2010-07-07 Carlos Alberto Cortez <calberto.cortez@gmail.com>
authorCarlos Alberto Cortez <calberto.cortez@gmail.com>
Wed, 7 Jul 2010 11:12:34 +0000 (11:12 -0000)
committerCarlos Alberto Cortez <calberto.cortez@gmail.com>
Wed, 7 Jul 2010 11:12:34 +0000 (11:12 -0000)
* ResourceWriterTest.cs: In our new AddResource_Stream_Default test
store the resource file under Test/resources/, instead of the base
dir, so we avoid filling the dir with not needed files.

svn path=/trunk/mcs/; revision=159992

mcs/class/corlib/Test/System.Resources/ChangeLog
mcs/class/corlib/Test/System.Resources/ResourceWriterTest.cs

index 7fa5e428a86ae0ca119da29b74ad41af9575d0fb..31ba3361ba5be1d4e6ac6efee659e18baf8c8937 100644 (file)
@@ -1,3 +1,9 @@
+2010-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * ResourceWriterTest.cs: In our new AddResource_Stream_Default test
+       store the resource file under Test/resources/, instead of the base
+       dir, so we avoid filling the dir with not needed files.
+
 2010-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
 
        * ResourceWriterTest.cs: New tests for our new 4.0 AddResource
index 6005bb3c8ee12d65e96013c1ccd13f483049527e..17beb6f1232c17da11507e6af25bb38738b340ee 100644 (file)
@@ -356,7 +356,7 @@ namespace MonoTests.System.Resources
                        stream.Write (buff, 0, buff.Length);
                        stream.Position = 0;
 
-                       ResourceWriter rw = new ResourceWriter ("TestResources.resources");
+                       ResourceWriter rw = new ResourceWriter ("Test/resources/AddResource_Stream.resources");
                        rw.AddResource ("Name", (object)stream);
                        rw.Close ();