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-05-03 23:30:10 +00:00
|
|
|
test cases/frameworks/15 llvm/test.json | 1 -
|
|
|
|
unittests/linuxliketests.py | 2 ++
|
|
|
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
2022-04-14 17:46:59 +00:00
|
|
|
|
2023-05-03 23:30:10 +00:00
|
|
|
diff --git a/test cases/frameworks/15 llvm/test.json b/test cases/frameworks/15 llvm/test.json
|
|
|
|
index 66ecd43552f6..1519155e3405 100644
|
|
|
|
--- a/test cases/frameworks/15 llvm/test.json
|
|
|
|
+++ b/test cases/frameworks/15 llvm/test.json
|
|
|
|
@@ -7,7 +7,6 @@
|
|
|
|
{ "val": "combination", "skip_on_jobname": ["msys2-gcc"]}
|
|
|
|
],
|
|
|
|
"link-static": [
|
|
|
|
- { "val": true, "skip_on_jobname": ["opensuse"] },
|
|
|
|
{ "val": false }
|
|
|
|
]
|
|
|
|
}
|
2022-04-14 17:46:59 +00:00
|
|
|
diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
|
2023-05-03 23:30:10 +00:00
|
|
|
index c94169ad8e37..dce2787ec81b 100644
|
2022-04-14 17:46:59 +00:00
|
|
|
--- a/unittests/linuxliketests.py
|
|
|
|
+++ b/unittests/linuxliketests.py
|
2022-11-09 00:32:50 +00:00
|
|
|
@@ -359,6 +359,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'])
|
2022-11-09 00:32:50 +00:00
|
|
|
@@ -1014,6 +1015,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'])
|