diff options
author | unknown <mkindahl@dl145h.mysql.com> | 2008-02-05 13:31:57 +0100 |
---|---|---|
committer | unknown <mkindahl@dl145h.mysql.com> | 2008-02-05 13:31:57 +0100 |
commit | df2cf8c78dc022472dd22584a140f579ad8cfe03 (patch) | |
tree | 69b08f597a95f3b0ca01951edc77667cc27c2c8a | |
parent | 57c599b3d4320f0e59751704f1c6121a4a484906 (diff) | |
download | mariadb-git-df2cf8c78dc022472dd22584a140f579ad8cfe03.tar.gz |
Adding some more filtering for tests that kills queries and
cause sporadic, but benign, errors.
mysql-test/lib/mtr_report.pl:
Filtering out sporadic but benign error in rpl_err_ignoredtable.
-rw-r--r-- | mysql-test/lib/mtr_report.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/lib/mtr_report.pl b/mysql-test/lib/mtr_report.pl index 929320b7653..ecfdc00eaf9 100644 --- a/mysql-test/lib/mtr_report.pl +++ b/mysql-test/lib/mtr_report.pl @@ -375,11 +375,12 @@ sub mtr_report_stats ($) { /Slave: Cannot add or update a child row: a foreign key constraint fails .* Error_code: 1452/ )) or - # rpl_skip_error and binlog_killed_simulate produce an error which is skipped (slave does not stop) + # These tests does "kill" on queries, causing sporadic errors when writing to logs (($testname eq 'rpl.rpl_skip_error' or + $testname eq 'rpl.rpl_err_ignoredtable' or $testname eq 'binlog.binlog_killed_simulate' or $testname eq 'binlog.binlog_killed') and - (/Failed to write to mysql\.general_log/ + (/Failed to write to mysql\.\w+_log/ )) or # rpl_temporary has an error on slave that can be ignored |