Commit a27de194 authored by Bjorn Munch's avatar Bjorn Munch

Bug #59182 output of mysql-test-run.pl - mismatch between col names and actual col contents

New patch, avoid global $opt_parallel
I still prefer not to print workerid when not doing parallel
parent 443b3bed
......@@ -396,7 +396,7 @@ sub mtr_report_stats ($$;$) {
##############################################################################
sub mtr_print_line () {
print '-' x 60 . "\n";
print '-' x 74 . "\n";
}
......@@ -406,13 +406,18 @@ sub mtr_print_thick_line {
}
sub mtr_print_header () {
sub mtr_print_header ($) {
my ($wid) = @_;
print "\n";
printf "TEST";
if ($wid) {
print " " x 34 . "WORKER ";
} else {
print " " x 38;
}
print "RESULT ";
print "TIME (ms)" if $timer;
print "\n";
print "TIME (ms) or " if $timer;
print "COMMENT\n";
mtr_print_line();
print "\n";
}
......
......@@ -438,7 +438,7 @@ sub main {
mtr_report();
mtr_print_thick_line();
mtr_print_header();
mtr_print_header($opt_parallel > 1);
mark_time_used('init');
......
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