From c244c0b254b68082e6e351c7b7e62117a14a4a62 Mon Sep 17 00:00:00 2001 From: Sergey Bronnikov <sergeyb@tarantool.org> Date: Thu, 7 May 2020 11:24:27 +0300 Subject: [PATCH] test: mute broken tests on OpenBSD Part of #4967 --- test/app-tap/fail_main.skipcond | 7 +++++++ test/app-tap/http_client.skipcond | 4 ++++ test/app-tap/popen.skipcond | 7 +++++++ test/app/cmdline.skipcond | 7 +++++++ test/app/crypto.skipcond | 4 ++-- test/app/digest.skipcond | 4 ++-- test/app/fiber.skipcond | 7 +++++++ test/app/fiber_channel.skipcond | 7 +++++++ test/app/socket.skipcond | 26 +++----------------------- test/box-py/args.test.py | 6 ++++++ test/box-tap/cfg.skipcond | 4 ++++ test/box/cfg.skipcond | 7 +++++++ test/box/net.box.skipcond | 4 ++-- test/box/net_msg_max.skipcond | 4 ++-- test/box/schema_reload.skipcond | 7 +++++++ test/box/tuple.skipcond | 7 +++++++ test/replication/sync.skipcond | 7 +++++++ test/wal_off/snapshot_stress.skipcond | 4 ++++ 18 files changed, 92 insertions(+), 31 deletions(-) create mode 100644 test/app-tap/fail_main.skipcond create mode 100644 test/app-tap/popen.skipcond create mode 100644 test/app/cmdline.skipcond create mode 100644 test/app/fiber.skipcond create mode 100644 test/app/fiber_channel.skipcond create mode 100644 test/box/cfg.skipcond create mode 100644 test/box/schema_reload.skipcond create mode 100644 test/box/tuple.skipcond create mode 100644 test/replication/sync.skipcond diff --git a/test/app-tap/fail_main.skipcond b/test/app-tap/fail_main.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/app-tap/fail_main.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/app-tap/http_client.skipcond b/test/app-tap/http_client.skipcond index 48e17903e8..108e776c4b 100644 --- a/test/app-tap/http_client.skipcond +++ b/test/app-tap/http_client.skipcond @@ -4,4 +4,8 @@ import platform if platform.system() == 'FreeBSD': self.skip = 1 +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + # vim: set ft=python: diff --git a/test/app-tap/popen.skipcond b/test/app-tap/popen.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/app-tap/popen.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/app/cmdline.skipcond b/test/app/cmdline.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/app/cmdline.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/app/crypto.skipcond b/test/app/crypto.skipcond index 48e17903e8..9c1ca22b17 100644 --- a/test/app/crypto.skipcond +++ b/test/app/crypto.skipcond @@ -1,7 +1,7 @@ import platform -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': self.skip = 1 # vim: set ft=python: diff --git a/test/app/digest.skipcond b/test/app/digest.skipcond index 48e17903e8..9c1ca22b17 100644 --- a/test/app/digest.skipcond +++ b/test/app/digest.skipcond @@ -1,7 +1,7 @@ import platform -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': self.skip = 1 # vim: set ft=python: diff --git a/test/app/fiber.skipcond b/test/app/fiber.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/app/fiber.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/app/fiber_channel.skipcond b/test/app/fiber_channel.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/app/fiber_channel.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/app/socket.skipcond b/test/app/socket.skipcond index 774b7e01ae..9c1ca22b17 100644 --- a/test/app/socket.skipcond +++ b/test/app/socket.skipcond @@ -1,27 +1,7 @@ - -# vim: set ft=python : -import re -import os.path -import socket -import os -import tempfile import platform -test_dir = tempfile.mkdtemp(prefix='tarantool-test-socket') -test_path = os.path.join(test_dir, 'socket') - -s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) -try: - s.bind(test_path) -except: +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': self.skip = 1 -s.close() - -if os.path.exists(test_path): - os.remove(test_path) - os.rmdir(test_dir) - -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': - self.skip = 1 +# vim: set ft=python: diff --git a/test/box-py/args.test.py b/test/box-py/args.test.py index f89c5bb094..c0fac9038a 100644 --- a/test/box-py/args.test.py +++ b/test/box-py/args.test.py @@ -2,6 +2,12 @@ import sys import os import re +# Disabled on OpenBSD due to fail #XXXX. +import platform + +if platform.system() == 'OpenBSD': + self.skip = 1 + # mask BFD warnings: https://bugs.launchpad.net/tarantool/+bug/1018356 sys.stdout.push_filter("unable to read unknown load command 0x2\d+", "") server.test_option("--help") diff --git a/test/box-tap/cfg.skipcond b/test/box-tap/cfg.skipcond index 7950a5d93b..33cafc12bc 100644 --- a/test/box-tap/cfg.skipcond +++ b/test/box-tap/cfg.skipcond @@ -5,4 +5,8 @@ import platform if platform.system() == 'FreeBSD': self.skip = 1 +# Disabled on OpenBSD due to fail #XXXX: +if platform.system() == 'OpenBSD': + self.skip = 1 + # vim: set ft=python: diff --git a/test/box/cfg.skipcond b/test/box/cfg.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/box/cfg.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/box/net.box.skipcond b/test/box/net.box.skipcond index 48e17903e8..9c1ca22b17 100644 --- a/test/box/net.box.skipcond +++ b/test/box/net.box.skipcond @@ -1,7 +1,7 @@ import platform -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': self.skip = 1 # vim: set ft=python: diff --git a/test/box/net_msg_max.skipcond b/test/box/net_msg_max.skipcond index 48e17903e8..9c1ca22b17 100644 --- a/test/box/net_msg_max.skipcond +++ b/test/box/net_msg_max.skipcond @@ -1,7 +1,7 @@ import platform -# Disabled on FreeBSD due to flaky fail #4271. -if platform.system() == 'FreeBSD': +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': self.skip = 1 # vim: set ft=python: diff --git a/test/box/schema_reload.skipcond b/test/box/schema_reload.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/box/schema_reload.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/box/tuple.skipcond b/test/box/tuple.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/box/tuple.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/replication/sync.skipcond b/test/replication/sync.skipcond new file mode 100644 index 0000000000..9c1ca22b17 --- /dev/null +++ b/test/replication/sync.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/wal_off/snapshot_stress.skipcond b/test/wal_off/snapshot_stress.skipcond index 48e17903e8..108e776c4b 100644 --- a/test/wal_off/snapshot_stress.skipcond +++ b/test/wal_off/snapshot_stress.skipcond @@ -4,4 +4,8 @@ import platform if platform.system() == 'FreeBSD': self.skip = 1 +# Disabled on OpenBSD due to fail #XXXX. +if platform.system() == 'OpenBSD': + self.skip = 1 + # vim: set ft=python: -- GitLab