From dee672ee8505ccf64f0ca38600ef9efb001cf4d1 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 29 Jun 2022 16:34:28 -0700 Subject: [PATCH] [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. --- .../API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 fd3deec..606875e 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 @@ class TestGdbRemote_vContThreads(gdbremote_testcase.GdbRemoteTestCaseBase): 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 @@ class TestGdbRemote_vContThreads(gdbremote_testcase.GdbRemoteTestCaseBase): 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): -- 2.7.4