From bb61c498ba6ceb36b9e64579e06fae149fd80106 Mon Sep 17 00:00:00 2001 From: Luis Soares Date: Sun, 1 Feb 2009 14:14:39 +0100 Subject: [PATCH 1/2] 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). --- mysql-test/lib/mtr_report.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } From 0d0572337eb4d462d9a0aa2a328cecc2474d22e7 Mon Sep 17 00:00:00 2001 From: Luis Soares Date: Sun, 1 Feb 2009 18:22:09 +0100 Subject: [PATCH 2/2] Empty commit to force new run on PB2 with MTR2 and comment fix.