PKGBUILDs/extra/meson/0001-Skip-broken-tests.patch

44 lines
2 KiB
Diff
Raw Normal View History

2022-04-14 17:46:59 +00:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
Date: Thu, 14 Apr 2022 14:08:15 +0000
Subject: [PATCH] Skip broken tests
---
2023-07-30 02:41:59 +00:00
test cases/linuxlike/13 cmake dependency/meson.build | 2 ++
unittests/linuxliketests.py | 2 ++
2024-07-12 00:18:49 +00:00
2 files changed, 4 insertions(+)
2022-04-14 17:46:59 +00:00
2023-07-30 02:41:59 +00:00
diff --git a/test cases/linuxlike/13 cmake dependency/meson.build b/test cases/linuxlike/13 cmake dependency/meson.build
2023-09-29 14:11:20 +00:00
index f612e1d52d6d..d0e0d079a069 100644
2023-07-30 02:41:59 +00:00
--- a/test cases/linuxlike/13 cmake dependency/meson.build
+++ b/test cases/linuxlike/13 cmake dependency/meson.build
2023-09-29 14:11:20 +00:00
@@ -7,6 +7,8 @@ if not cmake.found()
2023-07-30 02:41:59 +00:00
error('MESON_SKIP_TEST cmake binary not available.')
endif
+error('MESON_SKIP_TEST flaky, see https://github.com/mesonbuild/meson/issues/10104')
+
# Zlib is probably on all dev machines.
dep = dependency('ZLIB', version : '>=1.2', method : 'cmake')
2022-04-14 17:46:59 +00:00
diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
2024-07-12 00:18:49 +00:00
index ea86784892f3..864021688121 100644
2022-04-14 17:46:59 +00:00
--- a/unittests/linuxliketests.py
+++ b/unittests/linuxliketests.py
2024-03-13 00:53:08 +00:00
@@ -312,6 +312,7 @@ class LinuxlikeTests(BasePlatformTests):
2021-10-24 19:57:23 +00:00
raise SkipTest('asan not available on Cygwin')
2019-06-17 23:24:32 +00:00
if is_openbsd():
2021-10-24 19:57:23 +00:00
raise SkipTest('-fsanitize=address is not supported on OpenBSD')
+ raise SkipTest('cannot run sanitizers in containers without ptrace')
2019-06-17 23:24:32 +00:00
testdir = os.path.join(self.framework_test_dir, '7 gnome')
2021-01-06 14:52:10 +00:00
self.init(testdir, extra_args=['-Db_sanitize=address', '-Db_lundef=false'])
2024-03-13 00:53:08 +00:00
@@ -983,6 +984,7 @@ class LinuxlikeTests(BasePlatformTests):
2021-10-24 19:57:23 +00:00
raise SkipTest('asan not available on Cygwin')
if is_openbsd():
raise SkipTest('-fsanitize=address is not supported on OpenBSD')
+ raise SkipTest('cannot run sanitizers in containers without ptrace')
testdir = os.path.join(self.common_test_dir, '13 pch')
self.init(testdir, extra_args=['-Db_sanitize=address', '-Db_lundef=false'])