From 3b4ba47d89461877785b1cdbcaeba18eaec55f3d Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 28 Apr 2008 08:26:04 +0200 Subject: [PATCH] Add printout of all tests in case number of completed differs number of test and force is on --- mysql-test/mysql-test-run.pl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 881e540b2da..8271eacb636 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -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.");