Skip to content

Commit

Permalink
Report full test names when showing which tests to run or not run
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett Hazen committed Apr 22, 2015
1 parent a529f17 commit d50506c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/riak_test_escript.erl
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ shuffle_tests(Tests, NonTests, Offset, Workers) ->
{TestB ++ TestA, NonTests}.

prepare(ParsedArgs, Tests, NonTests) ->
lager:notice("Test to run: ~p", [[rt_test_plan:get_module(Test) || Test <- Tests]]),
[lager:notice("Test to run: ~p", [rt_test_plan:get_name(Test)]) || Test <- Tests],
case NonTests of
[] ->
ok;
_ ->
lager:notice("Test not to run: ~p", [[rt_test_plan:get_module(Test) || Test <- NonTests]])
[lager:notice("Test not to run: ~p", [rt_test_plan:get_name(Test)]) || Test <- NonTests]
end,
ok = erlang_setup(ParsedArgs),
test_setup().
Expand Down

0 comments on commit d50506c

Please sign in to comment.