1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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

and force is on
This commit is contained in:
unknown
2008-04-28 08:26:04 +02:00
parent c7caaad0fa
commit 3b4ba47d89

View File

@ -315,6 +315,14 @@ sub main {
}
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
mtr_report();
mtr_report("After @$completed of $num_tests.");