mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge 10.7 into 10.8
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
# be overcome. In normal cases one should fix the bug server/test case or in
|
||||
# the worst case add a (temporary?) suppression in asan.supp or lsan.supp
|
||||
|
||||
if (`select count(*) from information_schema.system_variables where variable_name='have_sanitizer' and global_value="ASAN"`)
|
||||
if (`select count(*) from information_schema.system_variables where variable_name='have_sanitizer' and global_value like "ASAN%"`)
|
||||
{
|
||||
--skip Can't be run with ASan
|
||||
}
|
||||
|
6
mysql-test/include/not_msan.inc
Normal file
6
mysql-test/include/not_msan.inc
Normal file
@@ -0,0 +1,6 @@
|
||||
# This file should only be used with tests that are too big or slow for MSAN.
|
||||
|
||||
if (`select count(*) from information_schema.system_variables where variable_name='have_sanitizer' and global_value like "MSAN%"`)
|
||||
{
|
||||
--skip Can't be run WITH_MSAN
|
||||
}
|
@@ -2,7 +2,7 @@
|
||||
# be overcome. In normal cases one should fix the bug server/test case or in
|
||||
# the worst case add a (temporary?) suppression in asan.supp or lsan.supp
|
||||
|
||||
if (`select count(*) from information_schema.system_variables where variable_name='have_sanitizer' and global_value="UBSAN"`)
|
||||
if (`select count(*) from information_schema.system_variables where variable_name='have_sanitizer' and global_value LIKE "%UBSAN"`)
|
||||
{
|
||||
--skip Can't be run with UBSAN
|
||||
}
|
||||
|
@@ -48,7 +48,9 @@ if ($rpl_debug)
|
||||
|
||||
# Send shutdown to the connected server and give
|
||||
# it 60 seconds (of mysqltest's default) to die before zapping it
|
||||
shutdown_server;
|
||||
let $rpl_shutdown_timeout= `select 60*(1+9*count(*)) from information_schema.system_variables where variable_name='have_sanitizer' and global_value like "MSAN%"`;
|
||||
|
||||
shutdown_server $rpl_shutdown_timeout;
|
||||
|
||||
--source include/wait_until_disconnected.inc
|
||||
|
||||
|
Reference in New Issue
Block a user