================
@@ -104,7 +104,9 @@ def waitUntil(self, condition_callback):
             time.sleep(0.5)
         return False
 
-    def verify_breakpoint_hit(self, breakpoint_ids, timeout=DEFAULT_TIMEOUT):
+    def verify_breakpoint_hit(
+        self, breakpoint_ids, timeout=DEFAULT_TIMEOUT, is_watchpoint=False
----------------
ashgti wrote:

Instead of `is_watchpoint` could we take a `reason: Optional[str] = None` and 
use that to match the `body['reason']`? Then we can catch specific kinds of 
stop reasons (e.g. `breakpoint` vs `instruction breakpoint` vs `data 
breakpoint` etc...).

https://github.com/llvm/llvm-project/pull/141122
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to