Skip to content

Commit

Permalink
MDEV-18353 fixup. Run mtr test on Windows
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vaintroub committed Sep 7, 2022
1 parent 71fc31b commit 7a93d45
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
source include/not_windows.inc;
source include/not_embedded.inc;
source include/have_debug.inc;
--echo #
Expand All @@ -8,7 +7,7 @@ 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 &;
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;

0 comments on commit 7a93d45

Please sign in to comment.