summaryrefslogtreecommitdiff
path: root/inttest/ct1/test_SUITE.erl
diff options
context:
space:
mode:
authorvarnerac-ubnt <drew.varner@ubnt.com>2014-06-27 12:26:25 -0500
committervarnerac-ubnt <drew.varner@ubnt.com>2014-06-27 15:35:56 -0500
commit35ee4571760ec7bd3bad9741d982699798bee1dc (patch)
tree71af55c8230fa770a400c6b18fbd67af74b9236c /inttest/ct1/test_SUITE.erl
parent6e24cd6ac7f8ba9b125c4898e29fa1e9a207f7d2 (diff)
Fix bug 271
Moves ct_extra_params to the end of the generated ct_run command. This allows users to pass commands to the underlying emulator using -erl_args. The included rt test demonstrates that it is possible to pass an addtional option to ct_run and -erl_args at the same time. Finally, the test executes in regular and verbose modes because rebar constructs the ct_run command differently in verbose mode.
Diffstat (limited to 'inttest/ct1/test_SUITE.erl')
-rw-r--r--inttest/ct1/test_SUITE.erl8
1 files changed, 7 insertions, 1 deletions
diff --git a/inttest/ct1/test_SUITE.erl b/inttest/ct1/test_SUITE.erl
index 92f2b2e..e8a2bb8 100644
--- a/inttest/ct1/test_SUITE.erl
+++ b/inttest/ct1/test_SUITE.erl
@@ -5,7 +5,13 @@
-include_lib("ct.hrl").
all() ->
- [simple_test].
+ [simple_test,
+ app_config_file_test].
simple_test(Config) ->
io:format("Test: ~p\n", [Config]).
+
+app_config_file_test(_Config) ->
+ application:start(a1),
+ {ok, bar} = application:get_env(a1, foo),
+ application:stop(a1).