mirror of
https://github.com/MariaDB/server.git
synced 2025-08-05 13:16:09 +03:00
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
This commit is contained in:
@@ -17,7 +17,16 @@ replace_result https http;
|
|||||||
perl;
|
perl;
|
||||||
$log_error= $ENV{'MYSQLTEST_VARDIR'} . '/log/mysqld.1.err';
|
$log_error= $ENV{'MYSQLTEST_VARDIR'} . '/log/mysqld.1.err';
|
||||||
open(LOG, '<', $log_error) or die "open(< $log_error): $!";
|
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;
|
close LOG;
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
@@ -1118,3 +1118,13 @@
|
|||||||
fun:fil_delete_tablespace
|
fun:fil_delete_tablespace
|
||||||
fun:row_drop_table_for_mysql
|
fun:row_drop_table_for_mysql
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
Problem with udf and libresolve
|
||||||
|
Memcheck:Cond
|
||||||
|
obj:*/libresolv*.so
|
||||||
|
fun:__libc_res_nquery
|
||||||
|
fun:_nss_dns_gethostbyaddr2_r
|
||||||
|
fun:_nss_dns_gethostbyaddr_r
|
||||||
|
fun:gethostbyaddr_r
|
||||||
|
}
|
||||||
|
@@ -183,3 +183,4 @@ ctype-simple\.c : .*unary minus operator applied to unsigned type, result still
|
|||||||
regexec\.c : passing argument 3 of.*matcher.* discards qualifiers from pointer target type
|
regexec\.c : passing argument 3 of.*matcher.* discards qualifiers from pointer target type
|
||||||
libmysql\.c: passing argument 2 of .*memcpy.* discards qualifiers from pointer target type : 3000-4000
|
libmysql\.c: passing argument 2 of .*memcpy.* discards qualifiers from pointer target type : 3000-4000
|
||||||
storage/xtradb/dict/dict0dict\.c : passing argument 1 of .*strcpy.* discards qualifiers from pointer target type : 2500-3500
|
storage/xtradb/dict/dict0dict\.c : passing argument 1 of .*strcpy.* discards qualifiers from pointer target type : 2500-3500
|
||||||
|
storage/xtradb/sync/sync0rw\.c : passing argument 1 of .*memset.* discards qualifiers from pointer target type : 200-300
|
||||||
|
Reference in New Issue
Block a user