summaryrefslogtreecommitdiff
path: root/mysql-test/t/rename.test
diff options
context:
space:
mode:
authorkroki/tomash@moonlight.intranet <>2006-11-03 12:16:31 +0300
committerkroki/tomash@moonlight.intranet <>2006-11-03 12:16:31 +0300
commitfbf508d68674fc2484472a7e35618459a1cf5a43 (patch)
tree3c6594a5680ebb393eec874051cf7a8f4e038f9c /mysql-test/t/rename.test
parent6a28c436f7ea768735d37ef037b00e036ad8ed04 (diff)
downloadmariadb-git-fbf508d68674fc2484472a7e35618459a1cf5a43.tar.gz
Cleanup: fix race in rename.test.
Diffstat (limited to 'mysql-test/t/rename.test')
-rw-r--r--mysql-test/t/rename.test10
1 files changed, 8 insertions, 2 deletions
diff --git a/mysql-test/t/rename.test b/mysql-test/t/rename.test
index 5caecef176e..caba0b87061 100644
--- a/mysql-test/t/rename.test
+++ b/mysql-test/t/rename.test
@@ -61,9 +61,15 @@ connection con2;
sleep 1;
show tables;
UNLOCK TABLES;
-sleep 1;
+connection con1;
+reap;
+connection con2;
show tables;
drop table t2, t4;
-# End of 4.1 tests
+disconnect con2;
+disconnect con1;
+connection default;
+
+--echo End of 4.1 tests