List:Commits« Previous MessageNext Message »
From:Luis Soares Date:February 1 2009 12:36pm
Subject:bzr commit into mysql-5.1-bugteam branch (luis.soares:2769) Bug#42485
View as plain text  
#At file:///home/lsoares/Workspace/mysql-server/bugfix/bugteam-trees/5.1-bugteam/

 2769 Luis Soares	2009-02-01
      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).
modified:
  mysql-test/lib/mtr_report.pm

=== modified file 'mysql-test/lib/mtr_report.pm'
--- a/mysql-test/lib/mtr_report.pm	2009-01-30 13:44:49 +0000
+++ b/mysql-test/lib/mtr_report.pm	2009-02-01 12:35:57 +0000
@@ -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";
 }
 
 

Thread
bzr commit into mysql-5.1-bugteam branch (luis.soares:2769) Bug#42485Luis Soares1 Feb