[Lldb-commits] [lldb] [lldb][lldb-dap] Disable more DAP tests on Windows (PR #158906)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 16 02:58:42 PDT 2025


https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/158906

Flakey on Windows on Arm:
https://lab.llvm.org/buildbot/#/builders/141/builds/11540

See #137660

>From 38b081dca6952783c1064527e227e3c6195fa552 Mon Sep 17 00:00:00 2001
From: David Spickett <david.spickett at linaro.org>
Date: Tue, 16 Sep 2025 10:57:10 +0100
Subject: [PATCH] [lldb][lldb-dap] Disable more DAP tests on Windows

Flakey on Windows on Arm:
https://lab.llvm.org/buildbot/#/builders/141/builds/11540

See #137660
---
 lldb/test/API/tools/lldb-dap/io/TestDAP_io.py         | 1 +
 lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py | 1 +
 2 files changed, 2 insertions(+)

diff --git a/lldb/test/API/tools/lldb-dap/io/TestDAP_io.py b/lldb/test/API/tools/lldb-dap/io/TestDAP_io.py
index af5c62a8c4eb5..246ad3ae944cc 100644
--- a/lldb/test/API/tools/lldb-dap/io/TestDAP_io.py
+++ b/lldb/test/API/tools/lldb-dap/io/TestDAP_io.py
@@ -76,6 +76,7 @@ def test_incorrect_content_length(self):
         process.stdin.close()
         self.assertEqual(process.wait(timeout=5.0), EXIT_FAILURE)
 
+    @skipIfWindows # https://github.com/llvm/llvm-project/issues/137660
     def test_partial_content_length(self):
         """
         lldb-dap returns a failure exit code when the input stream is closed
diff --git a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
index 22fcd42b3d36a..83392bcd2db73 100644
--- a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
+++ b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
@@ -143,6 +143,7 @@ def test_cwd(self):
                 )
         self.assertTrue(found, "verified program working directory")
 
+    @skipIfWindows # https://github.com/llvm/llvm-project/issues/137660
     def test_debuggerRoot(self):
         """
         Tests the "debuggerRoot" will change the working directory of



More information about the lldb-commits mailing list