https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/212431
See https://github.com/llvm/llvm-project/issues/209874. We are still hitting the larger timeout. >From d7fa510a3050e3ec31baeaf373ccae11af4e7bff Mon Sep 17 00:00:00 2001 From: David Spickett <[email protected]> Date: Tue, 28 Jul 2026 08:36:33 +0000 Subject: [PATCH] [lldb][test] Skip TestGuiSpawnThreads.py on Linux See https://github.com/llvm/llvm-project/issues/209874. We are still hitting the larger timeout. --- lldb/test/API/commands/gui/spawn-threads/TestGuiSpawnThreads.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/test/API/commands/gui/spawn-threads/TestGuiSpawnThreads.py b/lldb/test/API/commands/gui/spawn-threads/TestGuiSpawnThreads.py index df301dfd4d55e..f02b6b0662b09 100644 --- a/lldb/test/API/commands/gui/spawn-threads/TestGuiSpawnThreads.py +++ b/lldb/test/API/commands/gui/spawn-threads/TestGuiSpawnThreads.py @@ -21,6 +21,8 @@ class TestGuiSpawnThreadsTest(PExpectTest): # under ASAN on a loaded machine.. @skipIfAsan @skipIfCursesSupportMissing + # Temporary fix for CI timeouts - https://github.com/llvm/llvm-project/issues/209874. + @skipIfLinux def test_gui(self): self.build() _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
