[Mono-bugs] [Bug 51065][Blo] Changed - mcs --recurse '*.cs' isn't working on linux/ppc

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 17 Nov 2003 10:35:23 -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 jeroen@xs4all.nl.

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

--- shadow/51065	2003-11-17 05:29:31.000000000 -0500
+++ shadow/51065.tmp.7843	2003-11-17 10:35:23.000000000 -0500
@@ -1,14 +1,14 @@
 Bug#: 51065
 Product: Mono/MCS
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: YDL 3.0
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Blocker
 Component: Misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: Jeroen@xs4all.nl               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -34,6 +34,31 @@
 files itself, but it _does_ contain a "generated" directory which is full
 os .cs files.
 
 There are also issues with other directories & Makefile.in, but since they
 do not actually contain any subdirectories with sources, i managed to get
 around that by removing the single quotes around *.cs in the Makefile.in files.
+
+------- Additional Comments From Jeroen@xs4all.nl  2003-11-17 10:35 -------
+Sample program:
+
+using System;
+using System.IO;
+
+public class Bug51065 {
+	public static void Main (string[] args) {
+		DirectoryInfo di = new DirectoryInfo (".");
+		FileInfo[] files = di.GetFiles ("*");
+		
+		foreach (FileInfo file in files)
+			Console.WriteLine ("File: {0}", file.Name);
+	}
+}
+
+This program spits out online question marks:
+
+[jeroen@orcrist cshack]$ mint 51065.exe
+ 
+** (51065.exe:16189): WARNING **: Using non-atomic functions!
+File: ????????
+File: ?????????
+