Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2277 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
9 changed files with 58 additions and 12 deletions
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using System; |
||||
|
||||
namespace Debugger.Tests.TestPrograms |
||||
{ |
||||
public class Exception |
||||
{ |
||||
public static void Main() |
||||
{ |
||||
throw new System.Exception("test"); |
||||
} |
||||
} |
||||
} |
||||
@ -0,0 +1,11 @@
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<DebuggerTests> |
||||
<Test name="Exception"> |
||||
<ProcessStarted /> |
||||
<ModuleLoaded symbols="False">mscorlib.dll</ModuleLoaded> |
||||
<ModuleLoaded symbols="True">Exception.exe</ModuleLoaded> |
||||
<DebuggingPaused>Exception</DebuggingPaused> |
||||
<ExceptionThrown>test</ExceptionThrown> |
||||
<ProcessExited /> |
||||
</Test> |
||||
</DebuggerTests> |
||||
Loading…
Reference in new issue