[Lldb-commits] [lldb] 7d62e75 - [lldb][test] Disable part of TestThreadJump.py on WoA (#201074)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 2 02:33:19 PDT 2026
Author: David Spickett
Date: 2026-06-02T09:33:10Z
New Revision: 7d62e753bb9ef0c21d1be9d155e4f6456391a406
URL: https://github.com/llvm/llvm-project/commit/7d62e753bb9ef0c21d1be9d155e4f6456391a406
DIFF: https://github.com/llvm/llvm-project/commit/7d62e753bb9ef0c21d1be9d155e4f6456391a406.diff
LOG: [lldb][test] Disable part of TestThreadJump.py on WoA (#201074)
See https://github.com/llvm/llvm-project/issues/201068.
Added:
Modified:
lldb/test/API/functionalities/thread/jump/TestThreadJump.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/thread/jump/TestThreadJump.py b/lldb/test/API/functionalities/thread/jump/TestThreadJump.py
index 715846c10f23f..42c4fcf5523ce 100644
--- a/lldb/test/API/functionalities/thread/jump/TestThreadJump.py
+++ b/lldb/test/API/functionalities/thread/jump/TestThreadJump.py
@@ -14,6 +14,8 @@ def setUp(self):
TestBase.setUp(self)
self.build()
+ # Flakey on Windows on Arm, https://github.com/llvm/llvm-project/issues/201068.
+ @skipIf(oslist=["windows"], archs=["aarch64"])
def test(self):
"""Test thread jump handling."""
exe = self.getBuildArtifact("a.out")
More information about the lldb-commits
mailing list