From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp43.i.mail.ru (smtp43.i.mail.ru [94.100.177.103]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 53F604696C3 for ; Thu, 30 Apr 2020 12:49:39 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Thu, 30 Apr 2020 12:49:37 +0300 Message-Id: <9c52f131fa3be0ad88085dd2398844daa89b313d.1588240080.git.avtikhon@tarantool.org> Subject: [Tarantool-patches] [PATCH v1] test: fragile flaky tests from parallel runs List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Oleg Piskunov , Sergey Bronnikov Cc: tarantool-patches@dev.tarantool.org Fragiled flaky tests from parallel runs to avoid of flaky fails in regular testing: snapshot.test.py ; gh-4514 init_storage.test.py ; gh-4949 stat.test.lua ; gh-4951 xlog/checkpoint_daemon.test.lua ; gh-4952 Part of #4953 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/fragile-flaky-tests Issue: https://github.com/tarantool/tarantool/issues/4953 test/box-py/suite.ini | 1 + test/replication-py/suite.ini | 1 + test/vinyl/suite.ini | 1 + test/xlog/suite.ini | 1 + 4 files changed, 4 insertions(+) diff --git a/test/box-py/suite.ini b/test/box-py/suite.ini index 18737e48f..d1ff0fbfd 100644 --- a/test/box-py/suite.ini +++ b/test/box-py/suite.ini @@ -5,3 +5,4 @@ script = box.lua lua_libs = lua/fiber.lua lua/fifo.lua use_unix_sockets = True is_parallel = True +fragile = snapshot.test.py ; gh-4514 diff --git a/test/replication-py/suite.ini b/test/replication-py/suite.ini index df2dd8ef0..2658f4816 100644 --- a/test/replication-py/suite.ini +++ b/test/replication-py/suite.ini @@ -3,3 +3,4 @@ core = tarantool script = master.lua description = tarantool/box, replication is_parallel = True +fragile = init_storage.test.py ; gh-4949 diff --git a/test/vinyl/suite.ini b/test/vinyl/suite.ini index c8bc270f3..44c53dc68 100644 --- a/test/vinyl/suite.ini +++ b/test/vinyl/suite.ini @@ -15,3 +15,4 @@ pretest_clean = True fragile = errinj.test.lua ; gh-4346 select_consistency.test.lua ; gh-4385 throttle.test.lua ; gh-4168 + stat.test.lua ; gh-4951 diff --git a/test/xlog/suite.ini b/test/xlog/suite.ini index 635ec53c1..8e4c4d374 100644 --- a/test/xlog/suite.ini +++ b/test/xlog/suite.ini @@ -10,3 +10,4 @@ use_unix_sockets_iproto = True long_run = snap_io_rate.test.lua is_parallel = True pretest_clean = True +fragile = xlog/checkpoint_daemon.test.lua ; gh-4952 -- 2.17.1