[Lldb-commits] [lldb] dee672e - [lldb] Skip instead of XFAIL TestGdbRemote_vContThreads on Darwin
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 29 16:35:30 PDT 2022
Author: Jonas Devlieghere
Date: 2022-06-29T16:34:34-07:00
New Revision: dee672ee8505ccf64f0ca38600ef9efb001cf4d1
URL: https://github.com/llvm/llvm-project/commit/dee672ee8505ccf64f0ca38600ef9efb001cf4d1
DIFF: https://github.com/llvm/llvm-project/commit/dee672ee8505ccf64f0ca38600ef9efb001cf4d1.diff
LOG: [lldb] Skip instead of XFAIL TestGdbRemote_vContThreads on Darwin
The two XFAILed tests started timing out after D126983. Given that they
were XFAILed anyway I didn't investigate and just skipped them.
Added:
Modified:
lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py b/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
index fd3deecd2fab4..606875ed56213 100644
--- a/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
+++ b/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
@@ -54,8 +54,8 @@ def get_pid(self):
return int(procinfo['pid'], 16)
@skipIfWindows
+ @skipIfDarwin
@expectedFailureNetBSD
- @expectedFailureDarwin # No signals delivered
@expectedFailureAll(oslist=["freebsd"],
bugnumber="github.com/llvm/llvm-project/issues/56086")
@skipIfAsan # Times out under asan
@@ -84,10 +84,10 @@ def test_signal_one_thread(self):
threads[:1])
@skipIfWindows
+ @skipIfDarwin
@expectedFailureNetBSD
@expectedFailureAll(oslist=["freebsd"],
bugnumber="github.com/llvm/llvm-project/issues/56086")
- @expectedFailureDarwin # Only one signal delivered
@skipIfAsan # Times out under asan
@skipIf(oslist=["linux"], archs=["arm", "aarch64"]) # Randomly fails on buildbot
def test_signal_all_threads(self):
More information about the lldb-commits
mailing list