[Lldb-commits] [lldb] [lldb] Disable TestConsecutiveBreakpoints.py for Windows x86_64 (PR #142192)

Dmitry Vasilyev via lldb-commits lldb-commits at lists.llvm.org
Fri May 30 11:01:59 PDT 2025


https://github.com/slydiman created https://github.com/llvm/llvm-project/pull/142192

See #138083 for details.

>From 99e4418063a869e0d9bdec784e62c5ebcb569510 Mon Sep 17 00:00:00 2001
From: Dmitry Vassiliev <dvassiliev at accesssoftek.com>
Date: Fri, 30 May 2025 20:33:49 +0400
Subject: [PATCH] [lldb] Disable TestConsecutiveBreakpoints.py for Windows
 x86_64

See #138083 for details.
---
 .../consecutive_breakpoints/TestConsecutiveBreakpoints.py    | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py b/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
index ecea28c6e1f6d..351fae6b27678 100644
--- a/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
+++ b/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
@@ -91,6 +91,11 @@ def test_single_step(self):
         self.finish_test()
 
     @no_debug_info_test
+    @skipIf(
+        oslist=["windows"],
+        archs=["x86_64"],
+        bugnumber="github.com/llvm/llvm-project/issues/138083",
+    )
     def test_single_step_thread_specific(self):
         """Test that single step stops, even though the second breakpoint is not valid."""
         self.prepare_test()



More information about the lldb-commits mailing list