[Mono-bugs] [Bug 47689][Wis] Changed - The runtime should detect stack overflow

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sat, 8 Jan 2005 22:24:11 -0500 (EST)


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 danielmorgan@verizon.net.

http://bugzilla.ximian.com/show_bug.cgi?id=47689

--- shadow/47689	2004-11-29 13:23:48.000000000 -0500
+++ shadow/47689.tmp.2004	2005-01-08 22:24:11.000000000 -0500
@@ -138,6 +138,29 @@
 
 ------- Additional Comments From vargaz@gmail.com  2004-10-21 15:21 -------
 *** Bug 68639 has been marked as a duplicate of this bug. ***
 
 ------- Additional Comments From bmaurer@users.sf.net  2004-11-29 13:23 -------
 *** Bug 69958 has been marked as a duplicate of this bug. ***
+
+------- Additional Comments From danielmorgan@verizon.net  2005-01-08 22:24 -------
+StackOverFlowException still not implemented on Win32?
+
+In Mono 1.1.3 and Mono 1.0.5 on Win32, a StackOverFlowException is not
+thrown; Mono just exits.
+
+// recursiontest.cs - test for StackOverlowException
+using System;
+
+class RecursionTest 
+{
+	public static void DoTest () 
+	{
+		DoTest ();
+	}
+
+	public static void Main (string[] args) 
+	{
+		DoTest ();
+	}
+}
+