[Lldb-commits] [lldb] Support breakpoint info bytes (PR #141122)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Fri May 23 10:50:53 PDT 2025
================
@@ -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
More information about the lldb-commits
mailing list