summaryrefslogtreecommitdiff
path: root/repl-tests
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2000-10-01 21:26:29 -0600
committersasha@mysql.sashanet.com <>2000-10-01 21:26:29 -0600
commite97281efc36bc82798f26d38e4144bd2855fb70b (patch)
treeba577a46649d92defc0936bb7a199cf1daa1770a /repl-tests
parente049613391aa1df68c9969b4424296a8e2c41bdc (diff)
downloadmariadb-git-e97281efc36bc82798f26d38e4144bd2855fb70b.tar.gz
Need to commit to be able to pull to be able to push to fix an oops
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;