[Lldb-commits] [lldb] [lldb-dap] Improving lldbdap_testcase.py error diagnosability and adding exception handling for dap server disconnect and terminations (PR #155335)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 25 17:51:32 PDT 2025


================
@@ -466,8 +466,15 @@ def attach(
         # if we throw an exception during the test case.
         def cleanup():
             if disconnectAutomatically:
-                self.dap_server.request_disconnect(terminateDebuggee=True)
-            self.dap_server.terminate()
+                try:
+                    self.dap_server.request_disconnect(terminateDebuggee=True)
+                except (ValueError, TimeoutError, BrokenPipeError, ConnectionError, Exception) as e:
----------------
JDevlieghere wrote:

If you're going to catch `Exception` anyway, is there a reason to list the other exceptions? 

https://github.com/llvm/llvm-project/pull/155335


More information about the lldb-commits mailing list