summaryrefslogtreecommitdiff
path: root/test/rebar_profiles_SUITE.erl
diff options
context:
space:
mode:
authorPierre Fenoll <pierrefenoll@gmail.com>2018-02-23 12:50:29 +0100
committerPierre Fenoll <pierrefenoll@gmail.com>2018-03-02 12:53:22 +0100
commit6aeff6300bf8986079ac6e8f83fa37150e239810 (patch)
treec6c863760081e33da02543f1340a0efd8e0fc089 /test/rebar_profiles_SUITE.erl
parentabad0e14bb5a6ea5df21f2732bd72bf6efb0ca1e (diff)
Revert "sort-as: show issue more clearly"
This reverts commit 4ad1db97336a3ac070880876ada07d4c7b769327.
Diffstat (limited to 'test/rebar_profiles_SUITE.erl')
-rw-r--r--test/rebar_profiles_SUITE.erl19
1 files changed, 3 insertions, 16 deletions
diff --git a/test/rebar_profiles_SUITE.erl b/test/rebar_profiles_SUITE.erl
index 9f7912d..6afdc39 100644
--- a/test/rebar_profiles_SUITE.erl
+++ b/test/rebar_profiles_SUITE.erl
@@ -28,8 +28,7 @@
test_profile_erl_opts_order_4/1,
test_profile_erl_opts_order_5/1,
test_erl_opts_debug_info/1,
- first_files_exception/1,
- deduplication_stability/1]).
+ first_files_exception/1]).
-include_lib("common_test/include/ct.hrl").
-include_lib("eunit/include/eunit.hrl").
@@ -53,8 +52,7 @@ all() ->
test_profile_erl_opts_order_4,
test_profile_erl_opts_order_5,
test_erl_opts_debug_info,
- first_files_exception,
- deduplication_stability].
+ first_files_exception].
init_per_suite(Config) ->
application:start(meck),
@@ -135,7 +133,7 @@ profile_merge_umbrella_keys(Config) ->
{profiles,
[{ct,
[{vals, [{a,1},{b,2}]}]}]}],
-
+
SubRebarConfig = [{vals, []},
{profiles, [{ct, [{vals, [{c,1}]}]}]}],
@@ -548,17 +546,6 @@ first_files_exception(_Config) ->
?assertEqual(["c","a","b","a","e"], rebar_state:get(State1, mib_first_files)),
ok.
-deduplication_stability(_Config) ->
- ?assertEqual([default,all_deps_test], rebar_state:deduplicate([default,all_deps_test])),
- ?assertEqual([default,profile1,profile2], rebar_state:deduplicate([default,profile1,profile2])),
- ?assertEqual([default,bar,foo], rebar_state:deduplicate([default,bar,foo,bar])), %% master wants [default,foo,bar]
- ?assertEqual([default,test,bar], rebar_state:deduplicate([default,test,bar])),
- ?assertEqual([default,test,bar], rebar_state:deduplicate([default,test,bar,test])),
- ?assertEqual([default,profile1], rebar_state:deduplicate([default,profile1,profile1,profile1])),
- ?assertEqual([default,a,b,c,d,e], rebar_state:deduplicate([default,a,b,c,d,e,a,e,b])),
- ?assertEqual([default,test], rebar_state:deduplicate([default,test])),
- ok.
-
get_compiled_profile_erl_opts(Profiles, Config) ->
AppDir = ?config(apps, Config),
PStrs = [atom_to_list(P) || P <- Profiles],