[Lldb-commits] [lldb] [lldb-dap] Unify the timeouts for the DAP tests (PR #163292)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 15 16:34:28 PDT 2025
================
@@ -155,15 +152,13 @@ def assertCapabilityIsNotSet(self, key: str, msg: Optional[str] = None) -> None:
if key in self.dap_server.capabilities:
self.assertEqual(self.dap_server.capabilities[key], False, msg)
- def verify_breakpoint_hit(
- self, breakpoint_ids: List[Union[int, str]], timeout: float = DEFAULT_TIMEOUT
- ):
+ def verify_breakpoint_hit(self, breakpoint_ids: List[Union[int, str]]):
----------------
ashgti wrote:
This reminds me, I want to revisit breakpoint id handling.
We're inconsistent in handling breakpoint ids. Some APIs take them as strings, some convert them to strings and some take them as ints. They're an `int` in the spec, but I'm not sure why we're converting them into strings...
https://github.com/llvm/llvm-project/pull/163292
More information about the lldb-commits
mailing list