~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/rpl/t/rpl_ssl.test

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
# Set slave to use SSL for connection to master
12
12
stop slave;
13
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
13
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
14
14
eval change master to
15
15
  master_user='replssl',
16
16
  master_password='',
17
17
  master_ssl=1,
18
 
  master_ssl_ca ='$MYSQL_TEST_DIR/std_data/cacert.pem',
19
 
  master_ssl_cert='$MYSQL_TEST_DIR/std_data/client-cert.pem',
20
 
  master_ssl_key='$MYSQL_TEST_DIR/std_data/client-key.pem';
 
18
  master_ssl_ca ='$DRIZZLE_TEST_DIR/std_data/cacert.pem',
 
19
  master_ssl_cert='$DRIZZLE_TEST_DIR/std_data/client-cert.pem',
 
20
  master_ssl_key='$DRIZZLE_TEST_DIR/std_data/client-key.pem';
21
21
start slave;
22
22
 
23
23
# Switch to master and insert one record, then sync it to slave
30
30
 
31
31
# The slave is synced and waiting/reading from master
32
32
# SHOW SLAVE STATUS will show "Waiting for master to send event"
33
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR $MASTER_MYPORT MASTER_MYPORT
 
33
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR $MASTER_MYPORT MASTER_MYPORT
34
34
--replace_column 1 # 7 # 8 # 9 # 22 # 23 # 33 # 35 # 36 #
35
35
query_vertical show slave status;
36
36
 
70
70
 
71
71
sync_slave_with_master;
72
72
--source include/wait_for_slave_to_start.inc
73
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR $MASTER_MYPORT MASTER_MYPORT
 
73
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR $MASTER_MYPORT MASTER_MYPORT
74
74
--replace_column 1 # 7 # 8 # 9 # 22 # 23 # 33 # 35 # 36 #
75
75
query_vertical show slave status;
76
76