mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
A few regression tests invoke heavy flushing of the buffer pool and may trigger warnings that tablespaces could not be deleted because of pending writes. Those warnings are to be expected during the execution of such tests. The warnings are also frequently seen with Valgrind or MemorySanitizer. For those, the global suppression in have_innodb.inc does the trick.
15 lines
476 B
PHP
15 lines
476 B
PHP
#
|
|
# suite.pm will make sure that all tests including this file
|
|
# will be skipped unless innodb is enabled
|
|
#
|
|
--disable_query_log
|
|
if (`select count(*) from information_schema.system_variables where variable_name='have_sanitizer' and global_value like "MSAN%"`)
|
|
{
|
|
call mtr.add_suppression("InnoDB: Trying to delete tablespace.*pending operations");
|
|
}
|
|
if ($VALGRIND_TEST)
|
|
{
|
|
call mtr.add_suppression("InnoDB: Trying to delete tablespace.*pending operations");
|
|
}
|
|
--enable_query_log
|