diff options
author | alisdair sullivan <alisdairsullivan@yahoo.ca> | 2016-04-01 08:46:50 -0700 |
---|---|---|
committer | alisdair sullivan <alisdairsullivan@yahoo.ca> | 2016-04-01 08:46:50 -0700 |
commit | 876240d4ed5010ba7a2da5d46a960b5f3f3621ec (patch) | |
tree | baacc827045b6fe55067657873c7ad388f91bb43 /src | |
parent | f7d88a5436d28640d68ac3a747286bd28693f8d4 (diff) |
allow all `ct_opts` arguments to be passed through to `ct:run_test/1`
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_prv_common_test.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rebar_prv_common_test.erl b/src/rebar_prv_common_test.erl index 6b94f79..14dc4cc 100644 --- a/src/rebar_prv_common_test.erl +++ b/src/rebar_prv_common_test.erl @@ -189,8 +189,10 @@ ensure_opts([{suite, Suites}|Rest], Acc) -> ensure_opts(Rest, [NewSuites|Acc]); ensure_opts([{K, V}|Rest], Acc) -> ensure_opts(Rest, [{K, V}|Acc]); -ensure_opts([V|_Rest], _Acc) -> - ?PRV_ERROR({badconfig, {"Member `~p' of option `~p' must be a 2-tuple", {V, ct_opts}}}). +%% pass through other options, in case of things like config terms +%% in `ct_opts` +ensure_opts([V|Rest], Acc) -> + ensure_opts(Rest, [V|Acc]). add_hooks(Opts, State) -> case {readable(State), lists:keyfind(ct_hooks, 1, Opts)} of |