Commit bb61c498 authored by Luis Soares's avatar Luis Soares

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).
parent 16a6158c
...@@ -354,7 +354,7 @@ sub mtr_print_line () { ...@@ -354,7 +354,7 @@ sub mtr_print_line () {
sub mtr_print_thick_line { sub mtr_print_thick_line {
my $char= shift || '='; my $char= shift || '=';
print $char x 60, "\n"; print $char x 78, "\n";
} }
......
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