Commit 14e5db6f authored by Monty's avatar Monty

Print out retry count when using mysql-test-run --repeat

parent 4ec8598c
...@@ -118,7 +118,7 @@ sub mtr_report_test ($) { ...@@ -118,7 +118,7 @@ sub mtr_report_test ($) {
my $logfile= $tinfo->{'logfile'}; my $logfile= $tinfo->{'logfile'};
my $warnings= $tinfo->{'warnings'}; my $warnings= $tinfo->{'warnings'};
my $result= $tinfo->{'result'}; my $result= $tinfo->{'result'};
my $retry= $tinfo->{'retries'} ? "retry-" : ""; my $retry= $tinfo->{'retries'} ? "retry-" : $tinfo->{'repeat'} ? "$tinfo->{'repeat'} " : "";
if ($result eq 'MTR_RES_FAILED'){ if ($result eq 'MTR_RES_FAILED'){
......
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