[Lldb-commits] [lldb] [lldb-dap] Test Gardening, improving DebugCommunication. (PR #141689)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Wed May 28 13:53:20 PDT 2025


================
@@ -104,6 +103,17 @@ def waitUntil(self, condition_callback):
             time.sleep(0.5)
         return False
 
+    def assertResponseSuccess(self, response: Response):
+        self.assertIsNotNone(response)
+        if not response.get("success", False):
----------------
ashgti wrote:

Done.

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


More information about the lldb-commits mailing list