mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
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).
This commit is contained in:
parent
16a6158c47
commit
bb61c498ba
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue