[Lldb-commits] [lldb] [lldb][test] Disable part of TestThreadJump.py on WoA (PR #201074)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 2 02:21:40 PDT 2026


https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/201074

See https://github.com/llvm/llvm-project/issues/201068.

>From b07177c3f957ccf46d9bd12f2ce9cca06fb811e7 Mon Sep 17 00:00:00 2001
From: David Spickett <david.spickett at arm.com>
Date: Tue, 2 Jun 2026 09:16:39 +0000
Subject: [PATCH] [lldb][test] Disable part of TestThreadJump.py on WoA

See https://github.com/llvm/llvm-project/issues/201068.
---
 lldb/test/API/functionalities/thread/jump/TestThreadJump.py | 2 ++
 1 file changed, 2 insertions(+)

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