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

Bug #43659 MTR2 should report worker data for tests when using --parallel > 1

Adding "w# " before the test result
Also enable --parallel=2 so this can be tested.
This commit is contained in:
Bjorn Munch
2009-05-28 13:02:03 +02:00
parent f26f8edff4
commit 763579e65b
3 changed files with 9 additions and 5 deletions

View File

@ -71,6 +71,8 @@ sub _mtr_report_test_name ($) {
print _name(), _timestamp();
printf "%-40s ", $tname;
my $worker = $tinfo->{worker};
printf "w$worker " if $worker;
return $tname;
}