llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Charles Zablit (charles-zablit) <details> <summary>Changes</summary> This patch fixes an incorrect name of the `lldb-dap` process on Windows by appending `.exe` to the name. This is a prelude to https://github.com/llvm/llvm-project/pull/174635. --- Full diff: https://github.com/llvm/llvm-project/pull/175014.diff 1 Files Affected: - (modified) lldb/packages/Python/lldbsuite/test/dotest.py (+3-1) ``````````diff diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index fcd60a1bc0db8..84490d86c7e7f 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -566,7 +566,9 @@ def setupSysPath(): lldbDir = os.path.dirname(lldbtest_config.lldbExec) - lldbDAPExec = os.path.join(lldbDir, "lldb-dap") + lldbDAPExec = os.path.join( + lldbDir, "lldb-dap.exe" if sys.platform == "win32" else "lldb-dap" + ) if is_exe(lldbDAPExec): os.environ["LLDBDAP_EXEC"] = lldbDAPExec `````````` </details> https://github.com/llvm/llvm-project/pull/175014 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
