From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp32.i.mail.ru (smtp32.i.mail.ru [94.100.177.92]) (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 21068469710 for ; Fri, 15 May 2020 07:46:05 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Fri, 15 May 2020 07:46:02 +0300 Message-Id: <9eff4c06aac471fb41e388f0ed0eefea59aa0ba8.1589517865.git.avtikhon@tarantool.org> Subject: [Tarantool-patches] [PATCH v1] test: mark tests as fragile, 2nd group 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: app/fiber_channel.test.lua ; gh-4961 box/alter_limits.test.lua ; gh-4926 replication/wal_stress.test.lua ; gh-4977 Part of #4953 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4953-fragile-flaky-tests Issue: https://github.com/tarantool/tarantool/issues/4953 test/app/suite.ini | 1 + test/box/suite.ini | 1 + test/replication/suite.ini | 1 + 3 files changed, 3 insertions(+) diff --git a/test/app/suite.ini b/test/app/suite.ini index dd802d98c..829765447 100644 --- a/test/app/suite.ini +++ b/test/app/suite.ini @@ -7,3 +7,4 @@ use_unix_sockets = True use_unix_sockets_iproto = True is_parallel = True pretest_clean = True +fragile = fiber_channel.test.lua ; gh-4961 diff --git a/test/box/suite.ini b/test/box/suite.ini index 01f07236b..cd933e9e8 100644 --- a/test/box/suite.ini +++ b/test/box/suite.ini @@ -14,3 +14,4 @@ fragile = bitset.test.lua ; gh-4095 func_reload.test.lua ; gh-4425 function1.test.lua ; gh-4199 net.box.test.lua ; gh-3851 gh-4383 + alter_limits.test.lua ; gh-4926 diff --git a/test/replication/suite.ini b/test/replication/suite.ini index 897514aa6..1475e2395 100644 --- a/test/replication/suite.ini +++ b/test/replication/suite.ini @@ -18,3 +18,4 @@ fragile = errinj.test.lua ; gh-3870 sync.test.lua ; gh-3835 gh-3877 transaction.test.lua ; gh-4312 wal_off.test.lua ; gh-4355 + wal_stress.test.lua ; gh-4977 -- 2.17.1