[Mono-bugs] [Bug 71088][Min] Changed - FileInfo.Open(FileMode.Append) traces

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 31 Jan 2005 07:27: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 tambet@ximian.com.

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

--- shadow/71088	2005-01-31 02:02:57.000000000 -0500
+++ shadow/71088.tmp.28829	2005-01-31 07:27:11.000000000 -0500
@@ -1,12 +1,12 @@
 Bug#: 71088
 Product: Mono: Class Libraries
 Version: 1.1
 OS: unknown
 OS Details: 
-Status: NEEDINFO   
+Status: REOPENED   
 Resolution: 
 Severity: Unknown
 Priority: Minor
 Component: CORLIB
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: tambet@ximian.com               
@@ -70,6 +70,21 @@
 
 (Microsoft (R) .NET Framework version 1.1.4322, which is 1.1 iirc)
 
 
 ------- Additional Comments From miguel@ximian.com  2005-01-31 02:02 -------
 Tambet, could you please follow up, and reopen the bug if needed?
+
+------- Additional Comments From tambet@ximian.com  2005-01-31 07:27 -------
+Ah, sorry. I was trying bunch of different things and added the wrong
+example here. Here's the correct test case which traces on mono but
+not on .NET 1.1.4322
+
+using System.IO;
+ 
+public class foo {
+        public static void Main() {
+                FileInfo f = new FileInfo ("foo");
+                FileStream s = File.Open (f.Name, FileMode.Append);
+        }
+}
+