1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

After merge fixes

This commit is contained in:
msvensson@pilot.mysql.com
2008-03-26 07:22:42 +01:00
parent bc4874b79c
commit 201ce48d5d
7 changed files with 10 additions and 11 deletions

View File

@ -455,11 +455,14 @@ sub mtr_report_stats ($) {
# that can be copy pasted to rerun only failing tests
print "Failing test(s):";
my %seen= ();
foreach my $tinfo (@$tests)
{
if ( $tinfo->{'result'} eq 'MTR_RES_FAILED' )
my $tname= $tinfo->{'name'};
if ( $tinfo->{'result'} eq 'MTR_RES_FAILED' and ! $seen{$tname})
{
print " $tinfo->{'name'}";
print " $tname";
$seen{$tname}= 1;
}
}
print "\n\n";