[Mono-bugs] [Bug 32287][Nor] New - Windows/Linux compatibility problem?

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
15 Oct 2002 05:23:09 -0000


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 fgonthier@hermes.usherb.ca.

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

--- shadow/32287	Tue Oct 15 01:23:09 2002
+++ shadow/32287.tmp.30053	Tue Oct 15 01:23:09 2002
@@ -0,0 +1,46 @@
+Bug#: 32287
+Product: Mono/Runtime
+Version: unspecified
+OS: 
+OS Details: Windows.NET Server RC1 on Pentium III 450mhz/ Debian Woody 2.2.20 on AMD K6-2 350mhz
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: fgonthier@hermes.usherb.ca               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Windows/Linux compatibility problem?
+
+Description of Problem:
+Files compiled with Mono (October 15th CVS build) on Linux don't run well 
+in Windows with the Microsoft.NET SDK SP2.
+
+Steps to reproduce the problem:
+
+Create a simple Test.cs and compile it to Test.exe with MCS.
+
+using System;
+
+namespace Test {
+
+	public class Test {
+
+		public static void Main() {
+			Console.WriteLine("Hello, world");
+		}
+	}
+}
+
+Actual Results:
+Running in Mono in Linux, we see the expected "Hello World".  Nothing 
+appears when the same program is run in Windows.
+
+Additional Information:
+I sent my program compiled in Linux to a friend and it didn't run.  The 
+same friend compiled the same program in with Mono for Windows and it run 
+sucessfully with both Mono and Microsoft SDK.