1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<!--#include file="Head.html"-->
<body bgcolor="#FFFFFF" leftmargin=0 topmargin=0 text="black" link="#0000FF"
vlink="#000000" alink="#000000">
<!--#include file="Table.html"-->
<tr>
<!--#include file="SideBar.html"-->
<td width="550" valign="top" bgcolor="#FFFFFF">
<div align="left">
<a name="general"></a><font size=5>Advanced Dart</font>
<h3>Putting a Project Specific Logo on DartBoards</h3>
<h3>When a Test Crashes on Windows...</h3>
<p>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.
<p>You can suppress this dialog by modifying two register settings for
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug
to be
<ul>
<li> "Debugger"="dummy.bat"
<li> "Auto"="1"
</ul>
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.
<h3>Email Notifications for Continuous Builds</h3>
<h3>BuildName Notes, BuildStamp Notes</h3>
<h3>Code Coverage</h3>
<h3>Purify</h3>
<h4>Debug verses Release</h4>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
|