[tarantool-patches] [PATCH v1] test: sync.test.lua needs to use default timeout

avtikhon avtikhon at tarantool.org
Tue Apr 16 11:01:40 MSK 2019


sync.test.lua changed to use default 60 secs timeout for
wait_cond routine instead of local 10 secs.

[014] --- replication/sync.result Fri Apr 12 14:49:26 2019
[014] +++ replication/sync.reject Tue Apr 16 10:24:29 2019
[014] @@ -166,7 +166,7 @@
[014] -- Wait for remaining rows to arrive.
[014] test_run:wait_cond(function() return box.space.test:count() == 400 end, 10)
[014] ---
[014] -- true
[014] +- false
[014] ...
[014] -- Stop replication.
[014] replication = box.cfg.replication
[014] @@ -214,7 +214,7 @@
[014] -- Wait for remaining rows to arrive.
[014] test_run:wait_cond(function() return box.space.test:count() == 600 end, 10)
[014] ---
[014] -- true
[014] +- false
[014] ...
[014] -- Make sure replica leaves oprhan state.
[014] test_run:wait_cond(function() return box.info.status ~= 'orphan' end, 10)
[014]

Close #4163
---

Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4163-sync-default-timeout
Issue: https://github.com/tarantool/tarantool/issues/4163

 test/replication/sync.result   | 6 +++---
 test/replication/sync.test.lua | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/test/replication/sync.result b/test/replication/sync.result
index eddc7cbc8..975fe0a6c 100644
--- a/test/replication/sync.result
+++ b/test/replication/sync.result
@@ -164,7 +164,7 @@ box.info.ro -- false
 - false
 ...
 -- Wait for remaining rows to arrive.
-test_run:wait_cond(function() return box.space.test:count() == 400 end, 10)
+test_run:wait_cond(function() return box.space.test:count() == 400 end)
 ---
 - true
 ...
@@ -212,12 +212,12 @@ box.info.ro -- true
 - true
 ...
 -- Wait for remaining rows to arrive.
-test_run:wait_cond(function() return box.space.test:count() == 600 end, 10)
+test_run:wait_cond(function() return box.space.test:count() == 600 end)
 ---
 - true
 ...
 -- Make sure replica leaves oprhan state.
-test_run:wait_cond(function() return box.info.status ~= 'orphan' end, 10)
+test_run:wait_cond(function() return box.info.status ~= 'orphan' end)
 ---
 - true
 ...
diff --git a/test/replication/sync.test.lua b/test/replication/sync.test.lua
index 52ce88fe2..ac8ca2470 100644
--- a/test/replication/sync.test.lua
+++ b/test/replication/sync.test.lua
@@ -92,7 +92,7 @@ box.info.status -- running
 box.info.ro -- false
 
 -- Wait for remaining rows to arrive.
-test_run:wait_cond(function() return box.space.test:count() == 400 end, 10)
+test_run:wait_cond(function() return box.space.test:count() == 400 end)
 
 -- Stop replication.
 replication = box.cfg.replication
@@ -116,10 +116,10 @@ box.info.status -- orphan
 box.info.ro -- true
 
 -- Wait for remaining rows to arrive.
-test_run:wait_cond(function() return box.space.test:count() == 600 end, 10)
+test_run:wait_cond(function() return box.space.test:count() == 600 end)
 
 -- Make sure replica leaves oprhan state.
-test_run:wait_cond(function() return box.info.status ~= 'orphan' end, 10)
+test_run:wait_cond(function() return box.info.status ~= 'orphan' end)
 box.info.status -- running
 box.info.ro -- false
 
-- 
2.17.1





More information about the Tarantool-patches mailing list