summaryrefslogtreecommitdiff
path: root/repl-tests
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2000-10-01 21:26:29 -0600
committerunknown <sasha@mysql.sashanet.com>2000-10-01 21:26:29 -0600
commitb595ea8c2d29f7281bb50b47ccd436ada6a52df9 (patch)
treeba577a46649d92defc0936bb7a199cf1daa1770a /repl-tests
parent323905c1c31e7a07057d80495d06ba7a3c45ece1 (diff)
downloadmariadb-git-b595ea8c2d29f7281bb50b47ccd436ada6a52df9.tar.gz
Need to commit to be able to pull to be able to push to fix an oops
repl-tests/test-dump/run.test: increased wait for propogation repl-tests/test-repl/run.test: increased wait for propogation
Diffstat (limited to 'repl-tests')
-rw-r--r--repl-tests/test-dump/run.test2
-rwxr-xr-xrepl-tests/test-repl/run.test2
2 files changed, 2 insertions, 2 deletions
diff --git a/repl-tests/test-dump/run.test b/repl-tests/test-dump/run.test
index 22fa37e5ffd..c714186a67b 100644
--- a/repl-tests/test-dump/run.test
+++ b/repl-tests/test-dump/run.test
@@ -14,7 +14,7 @@ load data infile '/usr/dict/words' into table words;
drop table if exists words1;
create table words1 (word char(20) not null);
load data infile '/usr/dict/words' into table words1;
-sleep 5;
+sleep 20;
connection slave;
use test;
drop table if exists words;
diff --git a/repl-tests/test-repl/run.test b/repl-tests/test-repl/run.test
index 79eb2281b85..cc93d964efa 100755
--- a/repl-tests/test-repl/run.test
+++ b/repl-tests/test-repl/run.test
@@ -18,7 +18,7 @@ insert into foo values(1),(2);
@foo-dump-master.master select * from foo;
@sum-wlen-master.master select sum(length(word)) from words;
connection slave;
-sleep 5;
+sleep 15;
use test;
@sum-wlen-slave.master select sum(length(word)) from words;
@foo-dump-slave.master select * from foo;