archrelease: copy trunk to extra-x86_64
[arch-packages.git] / meson / trunk / 0001-Skip-broken-tests.patch
blob4aa961100ffe7e14212d0c41fb955481088d264b
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
6 ---
7 test cases/frameworks/15 llvm/test.json | 1 -
8 unittests/linuxliketests.py | 2 ++
9 2 files changed, 2 insertions(+), 1 deletion(-)
11 diff --git a/test cases/frameworks/15 llvm/test.json b/test cases/frameworks/15 llvm/test.json
12 index 66ecd43552f6..1519155e3405 100644
13 --- a/test cases/frameworks/15 llvm/test.json
14 +++ b/test cases/frameworks/15 llvm/test.json
15 @@ -7,7 +7,6 @@
16 { "val": "combination", "skip_on_jobname": ["msys2-gcc"]}
18 "link-static": [
19 - { "val": true, "skip_on_jobname": ["opensuse"] },
20 { "val": false }
23 diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
24 index c94169ad8e37..dce2787ec81b 100644
25 --- a/unittests/linuxliketests.py
26 +++ b/unittests/linuxliketests.py
27 @@ -359,6 +359,7 @@ class LinuxlikeTests(BasePlatformTests):
28 raise SkipTest('asan not available on Cygwin')
29 if is_openbsd():
30 raise SkipTest('-fsanitize=address is not supported on OpenBSD')
31 + raise SkipTest('cannot run sanitizers in containers without ptrace')
33 testdir = os.path.join(self.framework_test_dir, '7 gnome')
34 self.init(testdir, extra_args=['-Db_sanitize=address', '-Db_lundef=false'])
35 @@ -1014,6 +1015,7 @@ class LinuxlikeTests(BasePlatformTests):
36 raise SkipTest('asan not available on Cygwin')
37 if is_openbsd():
38 raise SkipTest('-fsanitize=address is not supported on OpenBSD')
39 + raise SkipTest('cannot run sanitizers in containers without ptrace')
41 testdir = os.path.join(self.common_test_dir, '13 pch')
42 self.init(testdir, extra_args=['-Db_sanitize=address', '-Db_lundef=false'])