Commit 3b4ba47d authored by unknown's avatar unknown

Add printout of all tests in case number of completed differs number of test

and force is on

parent c7caaad0
...@@ -315,6 +315,14 @@ sub main { ...@@ -315,6 +315,14 @@ sub main {
} }
if ( @$completed != $num_tests){ if ( @$completed != $num_tests){
if ($opt_force){
# All test should have been run, print the completed list
foreach my $test ( @completed ){
$test->print_test();
}
}
# Not all tests completed, failure # Not all tests completed, failure
mtr_report(); mtr_report();
mtr_report("After @$completed of $num_tests."); mtr_report("After @$completed of $num_tests.");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment