I am debugging a Python program in Eclipse.
I have a breakpoint in a big loop, and I expect the problem to occur in the (1000+) round. How can I achieve this as soon as possible and not press resume1000 times?
resume
You want to set a conditional breakpoint . Read the link I provided for explanation and example in python.
Ctrl-R is equivalent to placing a breakpoint on the cursor line and clicking the Resume button, except that it does not interfere with your system with unnecessary breakpoints.
Is this what you are looking for?
: http://www.clear.rice.edu/comp310/Eclipse/debugging.html