1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00
Files
mariadb/mysql-test/main/shutdown_debug.test
Vladislav Vaintroub 7a93d4535f MDEV-18353 fixup. Run mtr test on Windows
mtr supports running processes in background on Windows since 10.8.
Rename shutdown_not_windows.test to shutdown_debug.test, and allow this
test everywhere.
2022-09-07 17:58:34 +02:00

14 lines
631 B
Plaintext

source include/not_embedded.inc;
source include/have_debug.inc;
--echo #
--echo # MDEV-18353 Shutdown may miss to wait for connection thread
--echo #
call mtr.add_suppression('Thread .* did not exit');
set @old_dbug=@@global.debug_dbug;
set global debug_dbug='+d,CONNECT_wait';
select variable_value into @cons from information_schema.global_status where variable_name='connections';
exec $MYSQL -e "select sleep(3600)" >/dev/null 2>&1 &;
let $wait_condition= select variable_value>@cons from information_schema.global_status where variable_name='connections';
source include/wait_condition.inc;
source include/restart_mysqld.inc;