mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
mtr: increase timeouts under ASAN/UBSAN/MSAN
not only under valgrind
This commit is contained in:
parent
bd0e751549
commit
fc6711c636
5 changed files with 17 additions and 20 deletions
|
@ -31,11 +31,8 @@ if ($rpl_inited)
|
|||
set @@global.log_warnings=0;
|
||||
--enable_query_log
|
||||
|
||||
--let $server_shutdown_timeout= 60
|
||||
if ($VALGRIND_TEST)
|
||||
{
|
||||
--let $server_shutdown_timeout= 300
|
||||
}
|
||||
--source include/slow_environ.inc
|
||||
--let $server_shutdown_timeout= 60$_timeout_adjustment
|
||||
|
||||
if ($shutdown_timeout)
|
||||
{
|
||||
|
|
9
mysql-test/include/slow_environ.inc
Normal file
9
mysql-test/include/slow_environ.inc
Normal file
|
@ -0,0 +1,9 @@
|
|||
if (!$slow_environ_check)
|
||||
{
|
||||
let $_timeout_adjustment=;
|
||||
if (`select $VALGRIND_TEST + count(*) from information_schema.system_variables where variable_name='have_sanitizer' and global_value like '%SAN%'`)
|
||||
{
|
||||
let $_timeout_adjustment=0;
|
||||
}
|
||||
let $slow_environ_check=1;
|
||||
}
|
|
@ -25,11 +25,8 @@
|
|||
let $_slave_timeout= $slave_timeout;
|
||||
if (!$_slave_timeout)
|
||||
{
|
||||
let $_slave_timeout= 300;
|
||||
if ($VALGRIND_TEST)
|
||||
{
|
||||
let $_slave_timeout= 1500;
|
||||
}
|
||||
source include/slow_environ.inc;
|
||||
let $_slave_timeout= 300$_timeout_adjustment;
|
||||
}
|
||||
|
||||
--let $_master_log_file= query_get_value(SHOW SLAVE STATUS, Master_Log_File, 1)
|
||||
|
|
|
@ -33,11 +33,8 @@
|
|||
let $_slave_timeout= $slave_timeout;
|
||||
if (!$_slave_timeout)
|
||||
{
|
||||
let $_slave_timeout= 120;
|
||||
if ($VALGRIND_TEST)
|
||||
{
|
||||
let $_slave_timeout= 1200;
|
||||
}
|
||||
source include/slow_environ.inc;
|
||||
let $_slave_timeout= 120$_timeout_adjustment;
|
||||
}
|
||||
|
||||
--let $_result= `SELECT master_gtid_wait('$master_pos', $_slave_timeout)`
|
||||
|
|
|
@ -49,11 +49,8 @@
|
|||
let $_slave_timeout= $slave_timeout;
|
||||
if (!$_slave_timeout)
|
||||
{
|
||||
let $_slave_timeout= 300;
|
||||
if ($VALGRIND_TEST)
|
||||
{
|
||||
let $_slave_timeout= 1500;
|
||||
}
|
||||
source include/slow_environ.inc;
|
||||
let $_slave_timeout= 300$_timeout_adjustment;
|
||||
}
|
||||
|
||||
let $_slave_param_comparison= $slave_param_comparison;
|
||||
|
|
Loading…
Reference in a new issue