On Mon, Jan 09, 2006 at 07:06:08PM +1100, Kirrily Robert wrote:
> Does anyone else find that SKIP: { } blocks bugger up the debugger?
> I'll be happily bouncing on the "n" key to get to round about the
> vicinity of the failing test, and then blam, it sees a skipped test
> and just fast-forwards to the end.Yup. I assume "n" just puts a breakpoint on the next statement, but skip() bypasses said statement. Use a "c nnn" where nnn is the line number of the statement after the skip block.
