https://github.com/da-viper created 
https://github.com/llvm/llvm-project/pull/165593

Currently all `runInTerminal` test are skipped in debug builds because, when 
attaching it times out parsing the debug symbols of lldb-dap.

Add this test since it is running in teminal.

>From 08095a703546307dc68c75523c0b3f33dd8a3a22 Mon Sep 17 00:00:00 2001
From: Ebuka Ezike <[email protected]>
Date: Wed, 29 Oct 2025 15:40:27 +0000
Subject: [PATCH] [lldb-dap][test] skip io_redirection in debug builds

Currently all `runInTerminal` test are skipped in debug builds
because it times out when parsing the debug symbols of
lldb-dap when attaching.

Add this test since it is running in teminal.
---
 lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py | 1 +
 1 file changed, 1 insertion(+)

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 8db2316e73fc8..ca881f1d817c5 100644
--- a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
+++ b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
@@ -642,6 +642,7 @@ def test_stdio_redirection(self):
     @skipIfAsan
     @skipIfWindows
     @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
+    @skipIfBuildType(["debug"])
     def test_stdio_redirection_and_console(self):
         """
         Test stdio redirection and console.

_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to