summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2011-12-03 20:29:15 +0200
committerMichael Widenius <monty@askmonty.org>2011-12-03 20:29:15 +0200
commit2e34f1828ec6b1bf897eaa23dec8fce544047278 (patch)
tree18cbb0becbc43f1c83c54ad8bf7f1eadb1bdaf26 /mysql-test/t
parent926dc1e65cffe9b13e83f6138be4620f0d551081 (diff)
downloadmariadb-git-2e34f1828ec6b1bf897eaa23dec8fce544047278.tar.gz
Added suppressions
Fixed feedback_plugin_send to not generate a random number of lines. mysql-test/t/feedback_plugin_send.test: Don't print more than 4 lines (sometimes there are 6 feedback lines in the log...) mysql-test/valgrind.supp: Added suppression for failure on work support-files/compiler_warnings.supp: Suppress warning from xtradb
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/feedback_plugin_send.test13
1 files changed, 11 insertions, 2 deletions
diff --git a/mysql-test/t/feedback_plugin_send.test b/mysql-test/t/feedback_plugin_send.test
index 14765ee9543..d882539cfea 100644
--- a/mysql-test/t/feedback_plugin_send.test
+++ b/mysql-test/t/feedback_plugin_send.test
@@ -17,7 +17,16 @@ replace_result https http;
perl;
$log_error= $ENV{'MYSQLTEST_VARDIR'} . '/log/mysqld.1.err';
open(LOG, '<', $log_error) or die "open(< $log_error): $!";
- /feedback plugin:.*/ && print "$&\n" while $_=<LOG>;
+
+ # Get the first few rows (as there may be different number rows in the log)
+ $i= 0;
+ while ($_=<LOG>)
+ {
+ if (/feedback plugin:.*/)
+ {
+ print "$&\n";
+ break if ($i++ >= 3);
+ }
+ }
close LOG;
EOF
-