diff options
author | unknown <sven@riska.(none)> | 2008-02-13 17:39:23 +0100 |
---|---|---|
committer | unknown <sven@riska.(none)> | 2008-02-13 17:39:23 +0100 |
commit | 68114c88fbf87055c861796bef476fe879e58f0e (patch) | |
tree | 7a4e226ff4c0e24dda3679c4eab48f5acd6e21da /mysql-test/t/mysqldump.test | |
parent | 914ae26cf926332a91f838bc274db82f62981445 (diff) | |
download | mariadb-git-68114c88fbf87055c861796bef476fe879e58f0e.tar.gz |
BUG#32991: Races in mysqldump.test (or mysqldump.test fails sporadically)
This is *not* a fix to the bug. I'm only disabling the failing part of
mysqldump.test until the bug is fixed. Whoever fixes it, please re-enable
the test.
mysql-test/r/mysqldump.result:
Disabling part of the test case until BUG#32991 is fixed. Result file
updated accordingly.
mysql-test/t/mysqldump.test:
Disabling this part of the test case until BUG#32991 is fixed.
Diffstat (limited to 'mysql-test/t/mysqldump.test')
-rw-r--r-- | mysql-test/t/mysqldump.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/mysqldump.test b/mysql-test/t/mysqldump.test index 0e4e9989ffa..87613232011 100644 --- a/mysql-test/t/mysqldump.test +++ b/mysql-test/t/mysqldump.test @@ -1613,6 +1613,10 @@ DROP TABLE t1; # # Added for use-thread option # + +# THIS PART OF THE TEST IS DISABLED UNTIL BUG#32991 IS FIXED +if ($bug32991_fixed) { + create table t1 (a text , b text); create table t2 (a text , b text); insert t1 values ("Duck, Duck", "goose"); @@ -1650,6 +1654,8 @@ drop table t2; drop table words2; +} + --echo # --echo # BUG# 16853: mysqldump doesn't show events --echo # |