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

Charles Zablit via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 4 06:39:57 PDT 2026


https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/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.

>From d514871db653fd855f3ce5bd7b9790a871a5a77b Mon Sep 17 00:00:00 2001
From: Charles Zablit <c_zablit at apple.com>
Date: Thu, 4 Jun 2026 14:37:15 +0100
Subject: [PATCH] [lldb-dap][Windows] skip TestDAP_restart_console

---
 .../API/tools/lldb-dap/restart/TestDAP_restart_console.py     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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