Advanced Dart
Putting a Project Specific Logo on DartBoards
When a Test Crashes on Windows...
When a test crashes on Windows, the operating system displays a
dialog asking whether you would like to debug or exit the application.
Dart will stop running tests until a user responds to this dialog.
You can suppress this dialog by modifying two register settings for
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug
to be
- "Debugger"="dummy.bat"
- "Auto"="1"
Setting "Auto" to "1" instructs the OS to run the program "dummy.bat"
automatically when an application crashes. Since "dummy.bat" does not
exist, the application simply terminates when it crashes. Normally,
"Auto" is set to "0" indicating the dialog should be displayed and
"Debugger" is set to msdev.
Email Notifications for Continuous Builds
BuildName Notes, BuildStamp Notes
Code Coverage
Purify
Debug verses Release