diff options
author | Andrei Elkin <aelkin@mysql.com> | 2009-04-30 16:20:38 +0300 |
---|---|---|
committer | Andrei Elkin <aelkin@mysql.com> | 2009-04-30 16:20:38 +0300 |
commit | 24bfa855317c319bbd0fd41d5ddb06fd9a3bdc5a (patch) | |
tree | 6c97a8df8b9c82ed0b02229055d66b42d7f2693a /mysql-test/suite | |
parent | a152aa32de354011a61869aa65904795a244e283 (diff) | |
download | mariadb-git-24bfa855317c319bbd0fd41d5ddb06fd9a3bdc5a.tar.gz |
moving bug#38694 test files into rpl suite
Diffstat (limited to 'mysql-test/suite')
-rw-r--r-- | mysql-test/suite/rpl/r/rpl_bug38694.result | 6 | ||||
-rw-r--r-- | mysql-test/suite/rpl/t/rpl_bug38694-slave.opt | 1 | ||||
-rw-r--r-- | mysql-test/suite/rpl/t/rpl_bug38694.test | 10 |
3 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_bug38694.result b/mysql-test/suite/rpl/r/rpl_bug38694.result new file mode 100644 index 00000000000..711c4a91c03 --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_bug38694.result @@ -0,0 +1,6 @@ +stop slave; +drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; +reset master; +reset slave; +drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; +start slave; diff --git a/mysql-test/suite/rpl/t/rpl_bug38694-slave.opt b/mysql-test/suite/rpl/t/rpl_bug38694-slave.opt new file mode 100644 index 00000000000..d96e981b198 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_bug38694-slave.opt @@ -0,0 +1 @@ +--loose-debug=d,simulate_slave_delay_at_terminate_bug38694 diff --git a/mysql-test/suite/rpl/t/rpl_bug38694.test b/mysql-test/suite/rpl/t/rpl_bug38694.test new file mode 100644 index 00000000000..41b11d271b9 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_bug38694.test @@ -0,0 +1,10 @@ +# Testing replication threads stopping concurrency issue +# at the server shutdown +# Related bugs: bug#38694, bug#29968, bug#25306 +# The test checks if a delay at the termination phase of slave threads +# DBUG_EXECUTE_IF("simulate_slave_delay_at_terminate_bug38694", sleep(5);); +# could cause any issue. + +source include/master-slave.inc; + +# End of tests |