From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id CB1ED2E1C0 for ; Sun, 9 Jun 2019 16:45:03 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HF8YHRSV258p for ; Sun, 9 Jun 2019 16:45:03 -0400 (EDT) Received: from smtp39.i.mail.ru (smtp39.i.mail.ru [94.100.177.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 878F62E1A7 for ; Sun, 9 Jun 2019 16:45:03 -0400 (EDT) From: Georgy Kirichenko Subject: [tarantool-patches] [PATCH-v3 15/15] Fix flaky test Date: Sun, 9 Jun 2019 23:44:44 +0300 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: tarantool-patches@freelists.org Cc: Georgy Kirichenko --- test/replication/sync.result | 7 +++++-- test/replication/sync.test.lua | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/test/replication/sync.result b/test/replication/sync.result index eddc7cbc8..6b5a14d3f 100644 --- a/test/replication/sync.result +++ b/test/replication/sync.result @@ -46,7 +46,7 @@ function fill() box.space.test:replace{i} end fiber.create(function() - box.error.injection.set('ERRINJ_RELAY_TIMEOUT', 0.1) + box.error.injection.set('ERRINJ_RELAY_TIMEOUT', 0.0025) test_run:wait_cond(function() local r = box.info.replication[2] return r ~= nil and r.downstream ~= nil and @@ -55,7 +55,6 @@ function fill() for i = count + 101, count + 200 do box.space.test:replace{i} end - box.error.injection.set('ERRINJ_RELAY_TIMEOUT', 0) end) count = count + 200 end; @@ -250,6 +249,10 @@ test_run:cmd("switch default") --- - true ... +box.error.injection.set('ERRINJ_RELAY_TIMEOUT', 0) +--- +- ok +... box.error.injection.set('ERRINJ_WAL_DELAY', true) --- - ok diff --git a/test/replication/sync.test.lua b/test/replication/sync.test.lua index 52ce88fe2..f0f530ad4 100644 --- a/test/replication/sync.test.lua +++ b/test/replication/sync.test.lua @@ -30,7 +30,7 @@ function fill() box.space.test:replace{i} end fiber.create(function() - box.error.injection.set('ERRINJ_RELAY_TIMEOUT', 0.1) + box.error.injection.set('ERRINJ_RELAY_TIMEOUT', 0.0025) test_run:wait_cond(function() local r = box.info.replication[2] return r ~= nil and r.downstream ~= nil and @@ -39,7 +39,6 @@ function fill() for i = count + 101, count + 200 do box.space.test:replace{i} end - box.error.injection.set('ERRINJ_RELAY_TIMEOUT', 0) end) count = count + 200 end; @@ -136,6 +135,7 @@ box.cfg{replication_sync_lag = 1} box.cfg{replication_sync_timeout = 10} test_run:cmd("switch default") +box.error.injection.set('ERRINJ_RELAY_TIMEOUT', 0) box.error.injection.set('ERRINJ_WAL_DELAY', true) test_run:cmd("setopt delimiter ';'") _ = fiber.create(function() -- 2.21.0