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:
@ -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";
|
||||
|
Reference in New Issue
Block a user