* FileInfoTest.cs (IsReadOnly): Fix compilation. Mark as NotWorking.
authorRaja R Harinath <harinath@hurrynot.org>
Sun, 24 Sep 2006 17:41:15 +0000 (17:41 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Sun, 24 Sep 2006 17:41:15 +0000 (17:41 -0000)
svn path=/trunk/mcs/; revision=65867

mcs/class/corlib/Test/System.IO/ChangeLog
mcs/class/corlib/Test/System.IO/FileInfoTest.cs

index 7ba0166b87000ff86a5a1f3a06444039be1f9073..e5166e5ad3af4d1f3d6316c5464d5278f8f6f107 100644 (file)
@@ -1,3 +1,7 @@
+2006-09-24  Raja R Harinath  <harinath@gmail.com>
+
+       * FileInfoTest.cs (IsReadOnly): Fix compilation.  Mark as NotWorking.
+
 2006-09-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * FileInfoTest.cs: improved IsReadOnly test case. Patch by Joel Reed.
index 7c49f3970062ea709dc10b7d304e23db32df4e01..2bba0bf2bc1e2926a067ef3e31db07efcffb5ebb 100644 (file)
@@ -108,7 +108,7 @@ namespace MonoTests.System.IO
 
 #if NET_2_0
                
-               [Test]
+               [Test, Category ("NotWorking")]
                public void IsReadOnly ()
                {
                        string path = TempFolder + DSC + "FIT.IsReadOnly.Test";
@@ -126,7 +126,7 @@ namespace MonoTests.System.IO
                                info2.IsReadOnly = true;
                                AssertEquals ("test#02", true, info1.IsReadOnly);
 
-                               FileInfo info1 = new FileInfo (path);
+                               FileInfo info3 = new FileInfo (path);
                                info2.IsReadOnly = false;
                                AssertEquals ("test#03", false, info1.IsReadOnly);
                        } finally {