summaryrefslogtreecommitdiff
path: root/mysql-test/mysql-test-run.pl
diff options
context:
space:
mode:
authorMagnus Svensson <msvensson@mysql.com>2009-01-28 11:24:55 +0100
committerMagnus Svensson <msvensson@mysql.com>2009-01-28 11:24:55 +0100
commitf81d05c5d3c252619a8e6fcabe2fb7d0794210f8 (patch)
tree75d9bc8d7e22c2c8005b94d7497edd84b03cf00f /mysql-test/mysql-test-run.pl
parentad94278ba01a944624135604d7d3cdce142ad364 (diff)
downloadmariadb-git-f81d05c5d3c252619a8e6fcabe2fb7d0794210f8.tar.gz
Bug#42408 Faulty regex for detecting [Warning] and [ERROR] in mysqld error log
- Disable the two patterns that previously have been faulty - for now.
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-xmysql-test/mysql-test-run.pl11
1 files changed, 9 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl
index 42c243cad8c..5cc1d1f08e3 100755
--- a/mysql-test/mysql-test-run.pl
+++ b/mysql-test/mysql-test-run.pl
@@ -3425,8 +3425,15 @@ sub extract_warning_lines ($) {
my @patterns =
(
- qr/^Warning:|mysqld: Warning|\[Warning\]/,
- qr/^Error:|\[ERROR\]/,
+ # The patterns for detection of [Warning] and [ERROR]
+ # in the server log files have been faulty for a longer period
+ # and correcting them shows a few additional harmless warnings.
+ # Thus those patterns are temporarily removed from the list
+ # of patterns. For more info see BUG#42408
+ # qr/^Warning:|mysqld: Warning|\[Warning\]/,
+ # qr/^Error:|\[ERROR\]/,
+ qr/^Warning:|mysqld: Warning/,
+ qr/^Error:/,
qr/^==.* at 0x/,
qr/InnoDB: Warning|InnoDB: Error/,
qr/^safe_mutex:|allocated at line/,