[Mono-bugs] [Bug 74662][Maj] New - "run" skips over the program and jumps right to the end
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 19 Apr 2005 18:25:31 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by danw@novell.com.
http://bugzilla.ximian.com/show_bug.cgi?id=74662
--- shadow/74662 2005-04-19 18:25:31.000000000 -0400
+++ shadow/74662.tmp.426 2005-04-19 18:25:31.000000000 -0400
@@ -0,0 +1,33 @@
+Bug#: 74662
+Product: Mono: Debugger
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: cli
+AssignedTo: toshok@ximian.com
+ReportedBy: danw@novell.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: "run" skips over the program and jumps right to the end
+
+danw@twelve-monkeys:danw> cat > /tmp/test.cs
+public class Test {
+ public static void Main () {
+ System.Console.WriteLine ("foo");
+ }
+}
+danw@twelve-monkeys:danw> mcs -g -o /tmp/test.exe /tmp/test.cs
+danw@twelve-monkeys:danw> mdb /tmp/test.exe
+Mono Debugger
+(mdb) run
+Starting program: /tmp/test.exe
+Process @1 stopped at #0: 0x4050e521.
+0x4050e521 ret
+(mdb) c
+Process @3 is not stopped.