PKGBUILDs/extra/meson/skip-test.diff

24 lines
1.1 KiB
Diff
Raw Normal View History

2021-10-24 19:57:23 +00:00
unittests/linuxliketests.py | 2 ++
1 file changed, 2 insertions(+)
2021-01-06 14:52:10 +00:00
2021-10-24 19:57:23 +00:00
diff --git c/unittests/linuxliketests.py i/unittests/linuxliketests.py
2022-01-12 19:41:24 +00:00
index ade489d83..3ebed302b 100644
2021-10-24 19:57:23 +00:00
--- c/unittests/linuxliketests.py
+++ i/unittests/linuxliketests.py
@@ -343,6 +343,7 @@ class LinuxlikeTests(BasePlatformTests):
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'])
2021-12-22 19:02:00 +00:00
@@ -998,6 +999,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'])