llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Ebuka Ezike (da-viper) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/173994.diff 3 Files Affected: - (modified) lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py (+1-1) - (modified) lldb/test/API/tools/lldb-dap/io/TestDAP_io.py (+1-1) - (modified) lldb/test/API/tools/lldb-dap/server/TestDAP_server.py (+1-1) ``````````diff 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, `````````` </details> https://github.com/llvm/llvm-project/pull/173994 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
