https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/180237
https://github.com/llvm/llvm-project/pull/178642 added `lldb/test/Shell/DAP/TestSTDINConsole.test` with an incorrect `%lldb-dap` expansion. This patch fixes it. >From 2b1826a1aa0ff5de92a0422d52afd16a9c51c82c Mon Sep 17 00:00:00 2001 From: Charles Zablit <[email protected]> Date: Fri, 6 Feb 2026 18:20:15 +0100 Subject: [PATCH] [lldb-dap][windows] fix invalid path substitution for lldb-dap --- lldb/test/Shell/DAP/TestSTDINConsole.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/Shell/DAP/TestSTDINConsole.test b/lldb/test/Shell/DAP/TestSTDINConsole.test index ba2357d1b0fe4..0d6d25400260e 100644 --- a/lldb/test/Shell/DAP/TestSTDINConsole.test +++ b/lldb/test/Shell/DAP/TestSTDINConsole.test @@ -1,5 +1,5 @@ # REQUIRES: python, system-windows -# RUN: %python %s %lldb-dap > %t.out 2>&1 +# RUN: %python %s lldb-dap > %t.out 2>&1 # RUN: FileCheck %s --check-prefix=ERROR --allow-empty < %t.out # ERROR-NOT: DAP session error: _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
