How to continue till next break point in the OCaml debugger?

I’m setting a breakpoint in some function code that is called multiple times, but I cannot find any form of continue command, only the next and step commands, which make it cumbersome to reach the same spot on the followup calls.

Is the debugger only tailored for situations where the application throws an exception and the developer walks back on the execution?

According to OCaml - The debugger (ocamldebug) the command is run

1 Like