[Lldb-commits] [lldb] 18023b9 - [lldb][tests] Skip flaky TestLongjmp test on Windows (#186199)

via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 12 10:52:31 PDT 2026


Author: eleviant
Date: 2026-03-12T18:52:27+01:00
New Revision: 18023b94be5716806cd88a0c38022addae853a18

URL: https://github.com/llvm/llvm-project/commit/18023b94be5716806cd88a0c38022addae853a18
DIFF: https://github.com/llvm/llvm-project/commit/18023b94be5716806cd88a0c38022addae853a18.diff

LOG: [lldb][tests] Skip flaky TestLongjmp test on Windows (#186199)

Added: 
    

Modified: 
    lldb/test/API/functionalities/longjmp/TestLongjmp.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/longjmp/TestLongjmp.py b/lldb/test/API/functionalities/longjmp/TestLongjmp.py
index dcda276795b12..8a856f34a004f 100644
--- a/lldb/test/API/functionalities/longjmp/TestLongjmp.py
+++ b/lldb/test/API/functionalities/longjmp/TestLongjmp.py
@@ -11,6 +11,7 @@
 
 class LongjmpTestCase(TestBase):
     @skipIfDarwin  # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
+    @skipIfWindows # Test is flaky on Windows
     @expectedFlakeyNetBSD
     def test_step_out(self):
         """Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-out."""
@@ -18,6 +19,7 @@ def test_step_out(self):
         self.step_out()
 
     @skipIfDarwin  # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
+    @skipIfWindows # Test is flaky on Windows
     @skipIfNetBSD
     def test_step_over(self):
         """Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-over a longjmp."""
@@ -25,6 +27,7 @@ def test_step_over(self):
         self.step_over()
 
     @skipIfDarwin  # llvm.org/pr16769: LLDB on Mac OS X dies in function ReadRegisterBytes in GDBRemoteRegisterContext.cpp
+    @skipIfWindows # Test is flaky on Windows
     @expectedFlakeyNetBSD
     def test_step_back_out(self):
         """Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-out after thread step-in."""


        


More information about the lldb-commits mailing list