mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
b101f19d29
The call mtr.add_suppression() that was added
in commit 75b7cd680b
for MemorySanitizer and Valgrind runs is causing
a result difference for the test rpl.rpl_gtid_stop_start.
Let us disable the binlog for executing that statement.
Also, the test perfschema.statement_program_lost_inst
would fail due to the changes to have_innodb.inc in this commit.
To compensate for that, we will make more --suite=perfschema
tests run without InnoDB, and explicitly enable InnoDB in
those tests that depend on a transactional storage engine.
16 lines
540 B
PHP
16 lines
540 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%"`)
|
|
{
|
|
SET STATEMENT sql_log_bin=0 FOR
|
|
call mtr.add_suppression("InnoDB: Trying to delete tablespace.*pending operations");
|
|
}
|
|
if ($VALGRIND_TEST)
|
|
{
|
|
SET STATEMENT sql_log_bin=0 FOR
|
|
call mtr.add_suppression("InnoDB: Trying to delete tablespace.*pending operations");
|
|
}
|
|
--enable_query_log
|