From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp44.i.mail.ru (smtp44.i.mail.ru [94.100.177.104]) (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 37270469719 for ; Sun, 11 Oct 2020 03:33:17 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Sun, 11 Oct 2020 03:33:13 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v1] test: enable flaky tests on FreeBSD 12 List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin Cc: tarantool-patches@dev.tarantool.org Testing on FreeBSD 12 had some tests previously blocked to avoid of flaky fails. For now we have the ability to avoid of it in test-run using checksums for fails with opened issues. So adding back 7 tests to testing on FreeBSD 12. Part of #4271 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/flaky-checksums Issue: https://github.com/tarantool/tarantool/issues/4271 test/app-tap/http_client.skipcond | 4 ---- test/app/crypto.skipcond | 4 ---- test/app/digest.skipcond | 4 ---- test/box-tap/cfg.skipcond | 5 ----- test/box/net_msg_max.skipcond | 4 ---- test/replication/skip_conflict_row.skipcond | 7 ------- test/wal_off/snapshot_stress.skipcond | 4 ---- 7 files changed, 32 deletions(-) delete mode 100644 test/replication/skip_conflict_row.skipcond diff --git a/test/app-tap/http_client.skipcond b/test/app-tap/http_client.skipcond index 108e776c4..9c1ca22b1 100644 --- a/test/app-tap/http_client.skipcond +++ b/test/app-tap/http_client.skipcond @@ -1,9 +1,5 @@ import platform -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': - self.skip = 1 - # Disabled on OpenBSD due to fail #XXXX. if platform.system() == 'OpenBSD': self.skip = 1 diff --git a/test/app/crypto.skipcond b/test/app/crypto.skipcond index 108e776c4..9c1ca22b1 100644 --- a/test/app/crypto.skipcond +++ b/test/app/crypto.skipcond @@ -1,9 +1,5 @@ import platform -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': - self.skip = 1 - # Disabled on OpenBSD due to fail #XXXX. if platform.system() == 'OpenBSD': self.skip = 1 diff --git a/test/app/digest.skipcond b/test/app/digest.skipcond index 108e776c4..9c1ca22b1 100644 --- a/test/app/digest.skipcond +++ b/test/app/digest.skipcond @@ -1,9 +1,5 @@ import platform -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': - self.skip = 1 - # Disabled on OpenBSD due to fail #XXXX. if platform.system() == 'OpenBSD': self.skip = 1 diff --git a/test/box-tap/cfg.skipcond b/test/box-tap/cfg.skipcond index 33cafc12b..4e92728a3 100644 --- a/test/box-tap/cfg.skipcond +++ b/test/box-tap/cfg.skipcond @@ -1,10 +1,5 @@ import platform -# Disabled on FreeBSD due to fail #4271: -# Data segment size exceeds process limit -if platform.system() == 'FreeBSD': - self.skip = 1 - # Disabled on OpenBSD due to fail #XXXX: if platform.system() == 'OpenBSD': self.skip = 1 diff --git a/test/box/net_msg_max.skipcond b/test/box/net_msg_max.skipcond index 58b83f415..9c1ca22b1 100644 --- a/test/box/net_msg_max.skipcond +++ b/test/box/net_msg_max.skipcond @@ -4,8 +4,4 @@ import platform if platform.system() == 'OpenBSD': self.skip = 1 -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': - self.skip = 1 - # vim: set ft=python: diff --git a/test/replication/skip_conflict_row.skipcond b/test/replication/skip_conflict_row.skipcond deleted file mode 100644 index 48e17903e..000000000 --- a/test/replication/skip_conflict_row.skipcond +++ /dev/null @@ -1,7 +0,0 @@ -import platform - -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': - self.skip = 1 - -# vim: set ft=python: diff --git a/test/wal_off/snapshot_stress.skipcond b/test/wal_off/snapshot_stress.skipcond index 108e776c4..9c1ca22b1 100644 --- a/test/wal_off/snapshot_stress.skipcond +++ b/test/wal_off/snapshot_stress.skipcond @@ -1,9 +1,5 @@ import platform -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': - self.skip = 1 - # Disabled on OpenBSD due to fail #XXXX. if platform.system() == 'OpenBSD': self.skip = 1 -- 2.25.1