diff options
author | monty@hundin.mysql.fi <> | 2001-12-15 04:41:20 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-12-15 04:41:20 +0200 |
commit | 3b95f2570f8416b11679df72c9889c7bb17de16f (patch) | |
tree | 4fb785cae62baaf3d3a5c967d42c18532d07c9d4 /mysql-test/t/rpl000015.test | |
parent | 6ef31fd457ba99306ed8c605f77f1038dad595f0 (diff) | |
download | mariadb-git-3b95f2570f8416b11679df72c9889c7bb17de16f.tar.gz |
--replace_result in mysqltest can now use variables
Diffstat (limited to 'mysql-test/t/rpl000015.test')
-rw-r--r-- | mysql-test/t/rpl000015.test | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mysql-test/t/rpl000015.test b/mysql-test/t/rpl000015.test index 9dbbcf64802..8fd04613ab8 100644 --- a/mysql-test/t/rpl000015.test +++ b/mysql-test/t/rpl000015.test @@ -1,20 +1,25 @@ connect (master,localhost,root,,test,0,master.sock); connect (slave,localhost,root,,test,0, slave.sock); -eval_result; connection master; reset master; show master status; save_master_pos; connection slave; reset slave; +--replace_result $MASTER_MYPORT MASTER_PORT show slave status; change master to master_host='127.0.0.1'; +# The following needs to be cleaned up when change master is fixed +--replace_result $MASTER_MYPORT MASTER_PORT 3306 MASTER_PORT 3334 MASTER_PORT show slave status; +--replace_result $MASTER_MYPORT MASTER_PORT eval change master to master_host='127.0.0.1',master_user='root', master_password='',master_port=$MASTER_MYPORT; +--replace_result $MASTER_MYPORT MASTER_PORT show slave status; slave start; sync_with_master; +--replace_result $MASTER_MYPORT MASTER_PORT show slave status; connection master; drop table if exists t1; |