[Mono-bugs] [Bug 51636][Nor] New - more than 2 Console.Out dumps core

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 9 Jan 2004 11:39:37 -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 vargaz@freemail.hu.

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

--- shadow/51636	2004-01-09 11:39:37.000000000 -0500
+++ shadow/51636.tmp.10852	2004-01-09 11:39:37.000000000 -0500
@@ -0,0 +1,64 @@
+Bug#: 51636
+Product: Mono/Runtime
+Version: unspecified
+OS: Solaris 7
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: Unknown
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: karuppiah.kannan@cspb.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: more than 2 Console.Out dumps core
+
+Please fill in this template when reporting a bug, unless you know what 
+you are doing.
+Description of Problem:
+
+Steps to reproduce the problem:
+1. compile the program
+using System;
+
+public class DebugOne
+{
+  public static void Main()
+  {
+    Console.Out.WriteLine( "Test" );
+    Console.Out.WriteLine( "Test" );
+
+    int a = 0;
+    Console.Out.WriteLine( "Test" );
+    Console.Out.WriteLine( "Test" );
+  }
+}
+
+it works.
+
+remove the line "int a = 0";
+the compiler dumps core
+
+
+Actual Results:
+
+
+Expected Results:
+
+
+How often does this happen? 
+reproducable.
+
+Additional Information:
+
+platform : Sun Solaris 2.7
+C/C++ compiler version used for MONO compilation: Sun Workshop V5.0
+
+------- Additional Comments From miguel@ximian.com  2003-12-12 08:18 -------
+This must be an interpreter failure on SPARC.
+
+The interpreter works fine on x86, and the JIT works fine as well with
+the above test cases.