[Lldb-commits] [lldb] 76ddd45 - [lldb-dap][Windows] skip TestDAP_restart_console (#201587)

via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 4 07:02:02 PDT 2026


Author: Charles Zablit
Date: 2026-06-04T15:01:56+01:00
New Revision: 76ddd457c4244ea1a2cd5d3f69b5698d341a0f5b

URL: https://github.com/llvm/llvm-project/commit/76ddd457c4244ea1a2cd5d3f69b5698d341a0f5b
DIFF: https://github.com/llvm/llvm-project/commit/76ddd457c4244ea1a2cd5d3f69b5698d341a0f5b.diff

LOG: [lldb-dap][Windows] skip TestDAP_restart_console (#201587)

`TestDAP_restart_console` is already failing on Windows. It reliably
crashes (UNRESOLVED) on some Windows version, including inside Docker
containers.

This is preventing us from enabling pre-merge CI testing for lldb on
Windows in https://github.com/llvm/llvm-project/pull/198906.

This patch skips the test entirely. See
https://github.com/llvm/llvm-project/issues/200840 for more details.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-dap/restart/TestDAP_restart_console.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-dap/restart/TestDAP_restart_console.py b/lldb/test/API/tools/lldb-dap/restart/TestDAP_restart_console.py
index c80a3cdc10d95..e10d6791eeaf2 100644
--- a/lldb/test/API/tools/lldb-dap/restart/TestDAP_restart_console.py
+++ b/lldb/test/API/tools/lldb-dap/restart/TestDAP_restart_console.py
@@ -12,7 +12,7 @@
 @skipIfBuildType(["debug"])
 class TestDAP_restart_console(lldbdap_testcase.DAPTestCaseBase):
     @skipIfAsan
-    @expectedFailureWindows
+    @skipIfWindows  # https://github.com/llvm/llvm-project/issues/200840
     @skipIf(oslist=["linux"], archs=["arm$"])  # Always times out on buildbot
     def test_basic_functionality(self):
         """
@@ -61,7 +61,7 @@ def test_basic_functionality(self):
         self.continue_to_exit()
 
     @skipIfAsan
-    @expectedFailureWindows
+    @skipIfWindows  # https://github.com/llvm/llvm-project/issues/200840
     @skipIf(oslist=["linux"], archs=["arm$"])  # Always times out on buildbot
     def test_stopOnEntry(self):
         """


        


More information about the lldb-commits mailing list