https://github.com/da-viper created https://github.com/llvm/llvm-project/pull/173994
None >From 1d758a6a5cc3303b38b01e08ee5e2b32d42f5706 Mon Sep 17 00:00:00 2001 From: Ebuka Ezike <[email protected]> Date: Tue, 30 Dec 2025 15:05:20 +0000 Subject: [PATCH] [lldb-dap][NFC] change the dap log file extension --- .../Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py | 2 +- lldb/test/API/tools/lldb-dap/io/TestDAP_io.py | 2 +- lldb/test/API/tools/lldb-dap/server/TestDAP_server.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py index ac10d6d593805..e4a3e1c786ffe 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py @@ -34,7 +34,7 @@ def create_debug_adapter( self.assertTrue( is_exe(self.lldbDAPExec), "lldb-dap must exist and be executable" ) - log_file_path = self.getBuildArtifact("dap.txt") + log_file_path = self.getBuildArtifact("dap.log") self.dap_server = dap_server.DebugAdapterServer( executable=self.lldbDAPExec, connection=connection, 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 9fbe9aaee8c63..ffd860733ce5c 100644 --- a/lldb/test/API/tools/lldb-dap/io/TestDAP_io.py +++ b/lldb/test/API/tools/lldb-dap/io/TestDAP_io.py @@ -14,7 +14,7 @@ class TestDAP_io(lldbdap_testcase.DAPTestCaseBase): def launch(self): - log_file_path = self.getBuildArtifact("dap.txt") + log_file_path = self.getBuildArtifact("dap.log") process, _ = dap_server.DebugAdapterServer.launch( executable=self.lldbDAPExec, log_file=log_file_path ) diff --git a/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py b/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py index 3c53cf2ed3460..1e5b23f716627 100644 --- a/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py +++ b/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py @@ -17,7 +17,7 @@ class TestDAP_server(lldbdap_testcase.DAPTestCaseBase): def start_server( self, connection, connection_timeout=None, wait_seconds_for_termination=None ): - log_file_path = self.getBuildArtifact("dap.txt") + log_file_path = self.getBuildArtifact("dap.log") (process, connection) = dap_server.DebugAdapterServer.launch( executable=self.lldbDAPExec, connection=connection, _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
