From f2864cb3ba69c056d532467262335f28d1aa9d19 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Thu, 22 May 2014 10:09:49 -0500 Subject: fix for setting overrides with -a --- test/rlx_command_SUITE.erl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/rlx_command_SUITE.erl b/test/rlx_command_SUITE.erl index c34ed88..26783ff 100644 --- a/test/rlx_command_SUITE.erl +++ b/test/rlx_command_SUITE.erl @@ -58,11 +58,13 @@ normal_passing_case(Config) -> RelName = "foo-release", RelVsn = "33.222", CmdLine = ["-V", LogLevel, "-g",Goal1,"-g",Goal2, "-l", Lib1, "-l", Lib2, - "-n", RelName, "-v", RelVsn, "-o", Outdir], + "-n", RelName, "-v", RelVsn, "-o", Outdir, "-a", "lib1:"++binary_to_list(Lib1)], {ok, {Opts, Targets}} = getopt:parse(relx:opt_spec_list(), CmdLine), {ok, State} = rlx_cmd_args:args2state(Opts, Targets), {ConfigProvider, {ok, State1}} = rlx_provider:new(rlx_prv_config, State), {ok, State2} = rlx_provider:do(ConfigProvider, State1), + Overrides = rlx_state:overrides(State2), + ?assertMatch([{lib1, Lib1}], Overrides), ?assertMatch([Lib1, Lib2], rlx_state:lib_dirs(State2)), ?assertMatch(Outdir, rlx_state:base_output_dir(State2)), -- cgit v1.2.3