From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp51.i.mail.ru (smtp51.i.mail.ru [94.100.177.111]) (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 D14B7469719 for ; Mon, 19 Oct 2020 12:57:13 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Mon, 19 Oct 2020 12:57:11 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v1] test: skip election_qsync_stress test on FreeBSD12 List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin Cc: tarantool-patches@dev.tarantool.org Test replication/election_qsync_stress.test.lua flaky fails and even often on FreeBSD 12. It has stable reproducer shown in the issue. To stabilize the gitlab testing blocked this test from running on FreeBSD 12 with skip condition file till it will be fixed. Part of #5395 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-5395-block-stress-test Issue: https://github.com/tarantool/tarantool/issues/5395 test/replication/election_qsync_stress.skipcond | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/replication/election_qsync_stress.skipcond diff --git a/test/replication/election_qsync_stress.skipcond b/test/replication/election_qsync_stress.skipcond new file mode 100644 index 000000000..447e49018 --- /dev/null +++ b/test/replication/election_qsync_stress.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on FreeBSD due to flaky fail #5395. +if platform.system() == 'FreeBSD': + self.skip = 1 + +# vim: set ft=python: -- 2.25.1