Skip to content

Commit c681878

Browse files
committed
Make CI: Sort the results printout from ct_master
It makes more sense to sort by node name, than to have the results in the order they finished.
1 parent 2a0db91 commit c681878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbitmq_ct_helpers/src/ct_master_fork.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ master_loop(#state{node_ctrl_pids=[],
586586
lists:map(fun({Node,Result}) ->
587587
io_lib:format("~-40.40.*ts~tp\n",
588588
[$_,atom_to_list(Node),Result])
589-
end,lists:reverse(Finished)),
589+
end,lists:sort(Finished)),
590590
log(all,"TEST RESULTS","~ts", [Str]),
591591
log(all,"Info","Updating log files",[]),
592592

0 commit comments

Comments
 (0)