diff options
author | alisdair sullivan <alisdairsullivan@yahoo.ca> | 2016-06-11 16:28:32 -0700 |
---|---|---|
committer | alisdair sullivan <alisdairsullivan@yahoo.ca> | 2016-06-11 16:28:32 -0700 |
commit | aba5a721e10f5577ae8e06b10d2b9cd8fe9e0804 (patch) | |
tree | 8a0bd8ade340d23016ec5d8c0df8c16600c1841f /test | |
parent | fb26525a52935e98ef2521133d2b7bf5f34d5ab9 (diff) |
REBAR-1184 exclude tests for `ERL_COMPILER_OPTIONS` on r15
Diffstat (limited to 'test')
-rw-r--r-- | test/rebar_compile_SUITE.erl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/rebar_compile_SUITE.erl b/test/rebar_compile_SUITE.erl index d6d91b4..2f01dd4 100644 --- a/test/rebar_compile_SUITE.erl +++ b/test/rebar_compile_SUITE.erl @@ -63,8 +63,11 @@ all() -> parse_transform_test, erl_first_files_test, mib_test, umbrella_mib_first_test, only_default_transitive_deps, clean_all, override_deps, profile_override_deps, deps_build_in_prod, - include_file_relative_to_working_directory, include_file_in_src, - always_recompile_when_erl_compiler_options_set]. + include_file_relative_to_working_directory, include_file_in_src] ++ + case erlang:function_exported(os, unsetenv, 1) of + true -> [always_recompile_when_erl_compiler_options_set]; + false -> [] + end. groups() -> [{basic_app, [], [build_basic_app, paths_basic_app, clean_basic_app]}, |