1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
3 Date: Thu, 14 Apr 2022 14:08:15 +0000
4 Subject: [PATCH] Skip broken tests
7 test cases/linuxlike/13 cmake dependency/meson.build | 2 ++
8 unittests/linuxliketests.py | 2 ++
9 2 files changed, 4 insertions(+)
11 diff --git a/test cases/linuxlike/13 cmake dependency/meson.build b/test cases/linuxlike/13 cmake dependency/meson.build
12 index 193ad184b637..e94ba68ac30f 100644
13 --- a/test cases/linuxlike/13 cmake dependency/meson.build
14 +++ b/test cases/linuxlike/13 cmake dependency/meson.build
15 @@ -6,6 +6,8 @@ if not find_program('cmake', required: false).found()
16 error('MESON_SKIP_TEST cmake binary not available.')
19 +error('MESON_SKIP_TEST flaky, see https://github.com/mesonbuild/meson/issues/10104')
21 # Zlib is probably on all dev machines.
23 dep = dependency('ZLIB', version : '>=1.2', method : 'cmake')
24 diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
25 index 9b84740bbada..a8265acdde98 100644
26 --- a/unittests/linuxliketests.py
27 +++ b/unittests/linuxliketests.py
28 @@ -343,6 +343,7 @@ class LinuxlikeTests(BasePlatformTests):
29 raise SkipTest('asan not available on Cygwin')
31 raise SkipTest('-fsanitize=address is not supported on OpenBSD')
32 + raise SkipTest('cannot run sanitizers in containers without ptrace')
34 testdir = os.path.join(self.framework_test_dir, '7 gnome')
35 self.init(testdir, extra_args=['-Db_sanitize=address', '-Db_lundef=false'])
36 @@ -998,6 +999,7 @@ class LinuxlikeTests(BasePlatformTests):
37 raise SkipTest('asan not available on Cygwin')
39 raise SkipTest('-fsanitize=address is not supported on OpenBSD')
40 + raise SkipTest('cannot run sanitizers in containers without ptrace')
42 testdir = os.path.join(self.common_test_dir, '13 pch')
43 self.init(testdir, extra_args=['-Db_sanitize=address', '-Db_lundef=false'])