I'm using Delphi XE and I've got a project group containing the main application and a DUnit test application. From time to time, I go to the DUnit test application to add some tests and run existing one.

Some test code generates exceptions which are handled by the application, but displayed multiple time by the Delphi Debugger as I'm used to running the test application using the F9 ShortCut like I do with standard application: this is not very handy in that case.

I know about the SHIFT+CTRL+F9 shortcut to run without debugging and that's great when I remember to use it but I often find myself hitting F9, then grunting, then closing the test application, then hitting SHIFT+CTRL+F9. What a lost of time.

So my question: is there a better way ? Can I define some settings or use some expert to make that particular application run without debugging by default ? Surely I'm not the only one having this issue.

Thanks in advance.

link|improve this question

1  
+1 same here. It would be great if one could disable this behaviour with a compiler flag. Something like {$DoNotBreakOn EArgumentException} – Smasher Feb 8 '11 at 10:42
2  
The program already supports "Run without debugging" and the "Notify on language exceptions" switch. These are the right way to do what you need. If you add a compiler flag as Smasher suggests then just think how annoying it would be when you want to debug, but you can't. – David Heffernan Feb 8 '11 at 11:50
3  
As david suggests, you're perhaps wishing for the ability to run without debug, without running without debug. Run without debug, if you want to run without debug. If your brain's habits are the problem, work on the brain's habits. I get stuck exactly as you get stuck, and that worked for me. – Warren P Feb 8 '11 at 14:22
@Smasher: I'm not sure compiler flag would be the right way to do it as David is right, it could be annoying if you want to debug later on. @David: Right way in the current state indeed, but it could be improved. I'm thinking about XCode where the compile button changes based on your last action, compile without or with debugging. Perhaps a configurable compile button per project could be the solution here. @Warren: My brain is the problem but as a developer I'm used to try to find solution to that kind of problems, and it appears that my brain is not alone with that problem ;) – John Riche Feb 9 '11 at 7:59
feedback

4 Answers

up vote 3 down vote accepted

Nope (at least not up until D2009). Run without debugging is an IDE thing. A comiler flag would not help as it is the IDE that hooks the exe, not the other way around. The only place where you could have such an option would be in the project settings. But having it could make the IDE slightly confusing as the normal distinction between Run and Run without debugging would be overruled. You would then need a third option I guess, "Run", "Run with debugging" and "Run without debugging" where the simple "Run" would take its cue from the project options.

link|improve this answer
You answer is the most complete so I accept it. The third option is exactly what would be needed in that case and as I mentioned in the comments up there, this is what Apple is doing in XCode and perhaps Embarcadero could implement such an option. Thanks anyways. – John Riche Feb 9 '11 at 8:01
@John: You can always make a feature request on QC of course... – Marjan Venema Feb 9 '11 at 9:02
Done. See QC #91440. – John Riche Feb 9 '11 at 12:28
feedback

Add the run-without-debugging icon to the toolbar. Your problem is you forget the hotkey, and click the icon. So remove the other icon, or move them both around, like this:enter image description here

The bigger your application grows, I find, the slower the debugger startup gets. I run without debugging about 99% of the time now, because the startup time of my app goes from 2 seconds, to 2 minutes, because it uses a lot of runtime packages, and every BPL load in the debugger comes at a huge hit to my productivity. So long, slow painful experience has re-educated me to ask myself "Do I really need to debug?". If I don't, I click the nice green icon (in XE) that replaces the exclamation mark icon in older versions. (A smart UI improvement I think.). In previous delphi versions, the green play button meant "run with debugging".

link|improve this answer
2  
2 minutes startup? Ouch! What is the debugger doing? – David Heffernan Feb 8 '11 at 14:48
I got to agree with David, 2 minutes is extremely long. Perhaps you should consider adding more resources to your development machine. Regarding the icons, I never use them so this trick won't work: I always use the F9 key and that's the problem. – John Riche Feb 9 '11 at 8:04
That machine was a core-i7 with 16 gigs ram. The CPU goes to "14%" (single core at 100% usage) for 2 minutes. The problem can't be solved by a faster PC. It's a design problem inside the IDE. – Warren P Mar 12 at 14:35
feedback

Disable "notify on language exceptions".

Disable notify on language exceptions

link|improve this answer
It would work but for all projects and that is not the solution as I need it only for that particular test project. Thanks anyways. – John Riche Feb 9 '11 at 7:59
feedback

Well kind of. You can use non-breaking breakpoints[McKeeth][Jensen] to ignore the exceptions you are forcing in your tests. The only way to save breakpoints I know of is to enable Tools > Options > Autosave > Project desktop.

link|improve this answer
Unfortunately, I'm not forcing any exception, they are fired by the tested code itself. So this won't work. – John Riche Feb 9 '11 at 8:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.