1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Test case clean-up do to causing other test failures

This commit is contained in:
jmiller@mysql.com
2006-01-06 01:09:17 +01:00
parent 5ffdab0059
commit d1aacfad69
4 changed files with 7 additions and 3 deletions

View File

@ -31,5 +31,5 @@ use test;
select * from t1; select * from t1;
n n
1234 1234
drop table t1; DROP DATABASE mysqltest1;
stop slave; stop slave;

View File

@ -363,3 +363,4 @@ id hex(b1) vc bc d f total y t
select id,hex(b1),vc,bc,d,f,total,y,t from t1 order by id; select id,hex(b1),vc,bc,d,f,total,y,t from t1 order by id;
id hex(b1) vc bc d f total y t id hex(b1) vc bc d f total y t
DROP TABLE t1; DROP TABLE t1;
DROP DATABASE mysqltest1;

View File

@ -46,12 +46,13 @@ show tables;
use test; use test;
select * from t1; select * from t1;
system rm var/master-data/mysqltest1/f1.txt;
connection master; connection master;
drop table t1; DROP DATABASE mysqltest1;
sync_slave_with_master; sync_slave_with_master;
#cleanup #cleanup
connection slave; connection slave;
stop slave; stop slave;
system rm -rf var/master-data/mysqltest1; #system rm -rf var/master-data/mysqltest1;

View File

@ -94,6 +94,8 @@ show create table t1;
# cleanup # cleanup
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
# Need to drop mysqltest1 as well so other test will pass.
DROP DATABASE mysqltest1;
sync_slave_with_master; sync_slave_with_master;
# End of 5.1 test case # End of 5.1 test case