Topic: Conditional Breakpoints
Thanks for adding conditional breakpoints in 6.1.0.
The condition should be a logical expression. Can you make sure all logical expressions are supported.
For a loop index i, to break on the 10th iteration I set the condition as i == 10 but this didn't work. I had to use i .eq. 10.
(Similarly /=, <, >, <=, >= should be supported ideally.)
The other issue I have found is there is no way to clear a condition once it is set (other than setting the condition to .true. or removing it and then recreating a non-conditional breakpoint).
I would do the following:
Make "enable" in menu show "enable" or "disable" as appropriate.
Add a clear condition option to the menu when one has been set (grey out/disable when one has not been set).
Meanwhile I can work around these issues easily enough.
David.
David