Skip to content

Commit d50506c

Browse files
author
Brett Hazen
committed
Report full test names when showing which tests to run or not run
1 parent a529f17 commit d50506c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/riak_test_escript.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,12 +152,12 @@ shuffle_tests(Tests, NonTests, Offset, Workers) ->
152152
{TestB ++ TestA, NonTests}.
153153

154154
prepare(ParsedArgs, Tests, NonTests) ->
155-
lager:notice("Test to run: ~p", [[rt_test_plan:get_module(Test) || Test <- Tests]]),
155+
[lager:notice("Test to run: ~p", [rt_test_plan:get_name(Test)]) || Test <- Tests],
156156
case NonTests of
157157
[] ->
158158
ok;
159159
_ ->
160-
lager:notice("Test not to run: ~p", [[rt_test_plan:get_module(Test) || Test <- NonTests]])
160+
[lager:notice("Test not to run: ~p", [rt_test_plan:get_name(Test)]) || Test <- NonTests]
161161
end,
162162
ok = erlang_setup(ParsedArgs),
163163
test_setup().

0 commit comments

Comments
 (0)