Browse Source

Merge pull request #1541 from erlang/drop-r15

Drop R15 support
pull/1149/merge
alisdair sullivan 8 years ago
committed by GitHub
parent
commit
3491283a9f
2 changed files with 0 additions and 5 deletions
  1. +0
    -2
      .travis.yml
  2. +0
    -3
      src/rebar_prv_common_test.erl

+ 0
- 2
.travis.yml View File

@ -1,8 +1,6 @@
language: erlang language: erlang
matrix: matrix:
include: include:
- os: linux
otp_release: R15B03
- os: linux - os: linux
otp_release: R16B03-1 otp_release: R16B03-1
- os: linux - os: linux

+ 0
- 3
src/rebar_prv_common_test.erl View File

@ -567,9 +567,6 @@ get_tests_from_specs(Specs) ->
case ct_testspec:collect_tests_from_file(Specs,true) of case ct_testspec:collect_tests_from_file(Specs,true) of
Tests when is_list(Tests) -> Tests when is_list(Tests) ->
{ok,[{S,ct_testspec:prepare_tests(R)} || {S,R} <- Tests]}; {ok,[{S,ct_testspec:prepare_tests(R)} || {S,R} <- Tests]};
R when is_tuple(R), element(1,R)==testspec ->
%% R15
{ok,[{Specs,ct_testspec:prepare_tests(R)}]};
Error -> Error ->
Error Error
end end

Loading…
Cancel
Save