diff options
author | Luis Soares <luis.soares@sun.com> | 2009-02-01 14:14:39 +0100 |
---|---|---|
committer | Luis Soares <luis.soares@sun.com> | 2009-02-01 14:14:39 +0100 |
commit | 0030ff14573c1b6d23d74b622ff353bd635e2a38 (patch) | |
tree | 5b8af1964e2798542ab0f15db2160f823a018153 /mysql-test/lib | |
parent | f7a24d72dc7a86341da4634f6d1a71f1ea77000b (diff) | |
download | mariadb-git-0030ff14573c1b6d23d74b622ff353bd635e2a38.tar.gz |
BUG#42485: Pushbuild2 and some build tools do not work together with MTR2
It seems that the length of the thick line printed by mtr when printing the
suite name differs from mtr1 and mtr2, affecting the mtr filtering by PB2.
This patch addresses it by restoring the thick line length to 78 (original
length) instead of 60 (the one in mtr2).
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/mtr_report.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_report.pm b/mysql-test/lib/mtr_report.pm index 00a9aba11cb..0cfbcb4c52e 100644 --- a/mysql-test/lib/mtr_report.pm +++ b/mysql-test/lib/mtr_report.pm @@ -354,7 +354,7 @@ sub mtr_print_line () { sub mtr_print_thick_line { my $char= shift || '='; - print $char x 60, "\n"; + print $char x 78, "\n"; } |