aboutsummaryrefslogtreecommitdiffstats
path: root/test/rlx_command_SUITE.erl
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2014-05-22 10:09:49 -0500
committerTristan Sloughter <[email protected]>2014-05-22 10:09:49 -0500
commitf2864cb3ba69c056d532467262335f28d1aa9d19 (patch)
treeec12996b909f84482c5234a2c0593ea3af4802bf /test/rlx_command_SUITE.erl
parent6a50af3feb7186d86365aafeafadb3822973e343 (diff)
downloadrelx-f2864cb3ba69c056d532467262335f28d1aa9d19.tar.gz
relx-f2864cb3ba69c056d532467262335f28d1aa9d19.tar.bz2
relx-f2864cb3ba69c056d532467262335f28d1aa9d19.zip
fix for setting overrides with -a
Diffstat (limited to 'test/rlx_command_SUITE.erl')
-rw-r--r--test/rlx_command_SUITE.erl4
1 files changed, 3 insertions, 1 deletions
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)),