From 8bcb6409da9e24365caacc623ce440eddb4c0016 Mon Sep 17 00:00:00 2001 From: "Alexander V. Tikhonov" <avtikhon@tarantool.org> Date: Sun, 11 Oct 2020 03:27:48 +0300 Subject: [PATCH] test: enable flaky tests on FreeBSD 12 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. Closes #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 108e776c4b..9c1ca22b17 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 108e776c4b..9c1ca22b17 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 108e776c4b..9c1ca22b17 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 33cafc12bc..4e92728a3b 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 58b83f415c..9c1ca22b17 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 48e17903e8..0000000000 --- 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 108e776c4b..9c1ca22b17 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 -- GitLab