Tarantool development patches archive
 help / color / mirror / Atom feed
From: "Alexander V. Tikhonov" <avtikhon@tarantool.org>
To: Kirill Yukhin <kyukhin@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: [Tarantool-patches] [PATCH v1] test: enable flaky tests on FreeBSD 12
Date: Sun, 11 Oct 2020 03:33:13 +0300	[thread overview]
Message-ID: <b0b32687ef4c1607099259838eb335a32e018758.1602376328.git.avtikhon@tarantool.org> (raw)

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

                 reply	other threads:[~2020-10-11  0:33 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b0b32687ef4c1607099259838eb335a32e018758.1602376328.git.avtikhon@tarantool.org \
    --to=avtikhon@tarantool.org \
    --cc=kyukhin@tarantool.org \
    --cc=tarantool-patches@dev.tarantool.org \
    --subject='Re: [Tarantool-patches] [PATCH v1] test: enable flaky tests on FreeBSD 12' \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox