diff options
author | unknown <guilhem@mysql.com> | 2003-06-10 23:31:09 +0200 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2003-06-10 23:31:09 +0200 |
commit | 16ec93654cc523def6d3cc8bd96aba9c0c6c6c80 (patch) | |
tree | bcde0df27846d0a1e1be6d30043331017465d6ef /mysql-test/mysql-test-run.sh | |
parent | a1a58d6c5a9799cd3746d5bef85a9347051ef356 (diff) | |
parent | 0880795793f7c0c468bdb23f65050cc8ffd22d24 (diff) | |
download | mariadb-git-16ec93654cc523def6d3cc8bd96aba9c0c6c6c80.tar.gz |
Merge gbichot@213.136.52.20:/home/bk/mysql-4.0
into mysql.com:/home/mysql_src/mysql-4.0
mysql-test/mysql-test-run.sh:
Auto merged
Diffstat (limited to 'mysql-test/mysql-test-run.sh')
-rw-r--r-- | mysql-test/mysql-test-run.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.sh b/mysql-test/mysql-test-run.sh index 3fe9070bbd6..1d25a4d0e3d 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -1070,6 +1070,16 @@ stop_slave () fi } +stop_slave_threads () +{ + eval "this_slave_running=\$SLAVE$1_RUNNING" + slave_ident="slave$1" + if [ x$this_slave_running = x1 ] + then + $MYSQLADMIN --no-defaults -uroot --socket=$MYSQL_TMP_DIR/$slave_ident.sock stop-slave > /dev/null 2>&1 + fi +} + stop_master () { if [ x$MASTER_RUNNING = x1 ] @@ -1163,6 +1173,12 @@ run_testcase () return fi + # Stop all slave threads, so that we don't have useless reconnection attempts + # and error messages in case the slave and master servers restart. + stop_slave_threads + stop_slave_threads 1 + stop_slave_threads 2 + if [ -z "$USE_RUNNING_SERVER" ] ; then if [ -f $master_opt_file ] ; |