Author: Ebuka Ezike Date: 2025-10-30T10:41:17Z New Revision: 838f643ebb4083b34ac4671541188754ac3b0c50
URL: https://github.com/llvm/llvm-project/commit/838f643ebb4083b34ac4671541188754ac3b0c50 DIFF: https://github.com/llvm/llvm-project/commit/838f643ebb4083b34ac4671541188754ac3b0c50.diff LOG: [lldb-dap][test] skip io_redirection in debug builds (#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. Added: Modified: lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py Removed: ################################################################################ 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
