Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

debug a big loop in eclipse

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+)th round. How can I reach that ASAP instead of clicking resume 1000 times?

like image 676
onemach Avatar asked Jan 26 '12 03:01

onemach


1 Answers

You want to set a conditional breakpoint. Read through the link I provided for an explanation and example in python.

like image 91
Amir Afghani Avatar answered Sep 30 '22 14:09

Amir Afghani