[Lldb-commits] [lldb] 8e217ed - [lldb][Windows] skip TestDAP_attachCommands.py and TestDAP_launch_extra_launch_commands.py (#201796)

via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 5 03:37:51 PDT 2026


Author: Charles Zablit
Date: 2026-06-05T11:37:46+01:00
New Revision: 8e217eda17df80d2035d6ff27e74bfa8df77339a

URL: https://github.com/llvm/llvm-project/commit/8e217eda17df80d2035d6ff27e74bfa8df77339a
DIFF: https://github.com/llvm/llvm-project/commit/8e217eda17df80d2035d6ff27e74bfa8df77339a.diff

LOG: [lldb][Windows] skip TestDAP_attachCommands.py and TestDAP_launch_extra_launch_commands.py (#201796)

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py
    lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py b/lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py
index f24a32edbaa7b..525783b3785fb 100644
--- a/lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py
+++ b/lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py
@@ -12,6 +12,7 @@
 class TestDAP_attachCommands(lldbdap_testcase.DAPTestCaseBase):
     SHARED_BUILD_TESTCASE = False
 
+    @skipIfWindows  # Wait for module events fails.
     @skipIfNetBSD  # Hangs on NetBSD as well
     def test_commands(self):
         """

diff  --git a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py
index ad48af6364aba..cc3c4764a5fd7 100644
--- a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py
+++ b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py
@@ -2,7 +2,7 @@
 Test lldb-dap launch request.
 """
 
-from lldbsuite.test.decorators import skipIf
+from lldbsuite.test.decorators import skipIf, skipIfWindows
 from lldbsuite.test.lldbtest import line_number
 import lldbdap_testcase
 
@@ -12,6 +12,7 @@ class TestDAP_launch_extra_launch_commands(lldbdap_testcase.DAPTestCaseBase):
     Tests the "launchCommands" with extra launching settings
     """
 
+    @skipIfWindows  # Wait for module events fails.
     # Flakey on 32-bit Arm Linux.
     @skipIf(oslist=["linux"], archs=["arm$"])
     def test(self):


        


More information about the lldb-commits mailing list