X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FTest%2FSystem.IO%2FChangeLog;h=6846205f47812285cf63ca489c906b34e4569186;hb=00a9a5e7cac368999afc50deab44d6b1c0aba5cf;hp=220fc72f290104ccf7b12060ade90c2b7e62d72c;hpb=b2262f41726a89c8209facb3ea9e4be9582422b5;p=mono.git diff --git a/mcs/class/corlib/Test/System.IO/ChangeLog b/mcs/class/corlib/Test/System.IO/ChangeLog index 220fc72f290..6846205f478 100644 --- a/mcs/class/corlib/Test/System.IO/ChangeLog +++ b/mcs/class/corlib/Test/System.IO/ChangeLog @@ -1,3 +1,257 @@ +2009-04-27 Sebastien Pouliot + + * StreamReaderTest.cs: Fix build for NET_1_1 + +2009-04-24 Gonzalo Paniagua Javier + + * StreamReaderTest.cs: new test. Using Peek() when we did a short read + should block if needed. + +2009-02-24 Gonzalo Paniagua Javier + + * StringReaderTest.cs: new test for ReadLine. + +2008-12-10 Atsushi Enomoto + + * BinaryReaderTest.cs : fix tests that are also failing under .NET + (Exposed by nunit24). + +2008-11-09 William Holmes + + * TextReaderTest.cs: Added a test for the Null field of + the TextReader. + + Code is contributed under MIT/X11 license. + +2008-10-29 Gonzalo Paniagua Javier + + * PathTest.cs: add test for bug #439751. + +2008-10-12 Zoltan Varga + + * BinaryReaderTest.cs: Add a test for #434581. + +2008-08-16 Gert Driesen + + * StreamWriterTest.cs: Removed Constructor2_Path_Whitespace test, as + it only applies to Windows (and is duplicate for illegal chars test). + Only check paramname for buffersize exception on 2.0 profile. + +2008-08-15 Gert Driesen + + * StreamWriterTest.cs: Added more .ctor tests. Enabled AutoFlush + test. + +2008-08-15 Gert Driesen + + * StreamWriterTest.cs: Moved ctor argument checks to separate methods. + Added and improved ctor tests. Added test for Close. Improved + (Auto)Flush tests. Use Assert class instead of Assertion. + +2008-06-21 Gert Driesen + + * PathCas.cs: Updated method names to reflect changes in PathTest. + * PathTest.cs: Renamed tests. Use String.Empty instead of "". Added + argument check tests, and moved tests to separate methods. Avoid using + ExpectedException. + +2008-05-29 Robert Jordan + + * PathTest.cs (TestGetFullPathUnix, TestGetFullPathWindows): + Factored out from the disabled TestGetFullPath test while fixing + the issues mentioned by the ERROR comment and bug #394681. + +2008-05-08 Dick Porter + + * DirectoryInfoTest.cs: Added a test for bug 385765. + +2008-04-30 Gert Driesen + + * DirectoryTest.cs: Do not use ExpectedException to avoid false + positives. Use String.Empty instead of "". + +2008-04-22 Dick Porter + + * FileTest.cs: Disable the test for bug 323389, as I've reverted + the fix. + +2008-04-17 Dick Porter + + * FileTest.cs: Test for bug 323389. + +2008-04-17 Dick Porter + + * FileTest.cs: Test for bug 378229. + +2008-04-17 Gert Driesen + + * File.cs: Added/improved tests for Create and Move. + * DirectoryInfoTest.cs: No longer derive from deprecated Assertion + class. Improved tests for ctor, Create, Name, Parent, ... + * FileInfoTest.cs: No longer derive from deprecated Assertion class. + Improved/added tests, + * PathTest.cs: Added tests for IsPathRooted and GetFullPath. + * FileSystemInfoTest.cs: Fixed test. Now passes on both Mono and MS. + +2008-04-16 Gert Driesen + + * FileTest.cs: Renamed and improved existing tests. Avoid use of + ExpectedException. + * FileSystemInfoTest.cs: No longer derive from deprecated Assertion + class. Added (de)serialization tests. + +2008-04-04 Dick Porter + + * FileTest.cs: Test moving a file when the access mode disallows + it. Test from Eric Albright , see bug 377049. + +2008-04-03 Dick Porter + + * DirectoryTest.cs: Enable tests now that bug 346123 is fixed. + +2008-03-28 Sebastien Pouliot + + * DirectoryTest.cs: Add test case when deleting a directory that does + not exists but where a file of the same name exists. + +2008-01-06 Zoltan Varga + + * FileTest.cs: Rename a helper method so it does not begin with Test. + +2007-12-28 Zoltan Varga + + * MemoryStreamTest.cs: Add new test. + +2007-12-05 Gert Driesen + + * DirectoryTest.cs: Added (NotWorking) tests for bug #346123. + +2007-11-17 Jb Evain + + * PathTest.cs: Add test for #341034, GetRandomFileName should + return only file names in [a..z0..9]. + +2007-11-05 Sebastien Pouliot + + * MemoryStreamTest.cs: Add test case for #322672 (which seems already + fixed in SVN). + +2007-11-02 Atsushi Enomoto + + * PathTest.cs: Fixed wrong assumption on GetDirectoryName("/") + result on Unix (on top level it returns null). + +2007-11-02 Robert Jordan + + * PathTest.cs (TestGetDirectoryName): Fix syntax errors. + +2007-09-27 Gert Driesen + + * DirectoryTest.cs: Added RunningOnUnix property to use for enabling + or disabling tests on a specific platform. Enabled and improved test + for bug #325107. + +2007-09-21 Gert Driesen + + * MemoryStreamTest.cs: Added test for bug #327053. + +2007-09-08 Gert Driesen + + * DirectoryTest.cs: Added test for bug #82440. + +2007-08-21 Gert Driesen + + * FileTest.cs: Added test for File.GetAttributes (and indirectly also + for SetAttributes). Removed use of deprecated Assertion class. + +2007-08-20 William Holmes + + *FileTest.cs: Added a test for IO.File.Replace. + + Code is contributed under MIT/X11 license. + +2007-08-01 Dick Porter + + * DirectoryTest.cs: Test for bug 82212 is now working. + +2007-07-28 Gert Driesen + + * DirectoryTest.cs: Added test for bug #82212. + +2007-07-08 Gert Driesen + + * DirectoryCas.cs: Changed Move to MoveDirectory to match the + method in DirectoryTest. Fixed line endings. + * DirectoryTest.cs: Added test for bug #81912. Added tests for Move + argument checks. + +2007-06-24 Gert Driesen + + * DirectoryTest.cs: Restore original CurrentCulture on teardown. + * FileSystemInfoTest.cs: Restore original CurrentCulture on teardown. + Removed stray tabs. Code formatting. + * FileTest.cs: Restore original CurrentCulture on teardown. Removed + stray tabs. Changes spaces to tabs. + +2007-06-22 Gert Driesen + + * FileStreamTest.cs: Added test for bug #79250. + +2007-05-25 Gert Driesen + + * UnmanagedMemoryStreamTest.cs: Added tests for CanRead, CanSeek, + CanWrite, Seek, Write. Improved existing tests for SetLength, + Position. Enabled tests that were previously failing. + +2007-05-24 Gert Driesen + + * UnmanagedMemoryStreamTest.cs: Fixed several tests and added several + more. Tests were previously ignored by NUnit because the SetUp method + was private. + +2007-02-19 Eyal Alaluf + + * FileStreamTest.cs: Mark tests that use TARGET_JVM not supported features. + +2007-02-19 Boris Kirzner + + * DirectoryTest.cs, PathTest.cs: added test for + order of InvalidPathChars on windows. + +2007-01-31 Gert Driesen + + * FileStreamTest.cs: Added and improved tests to verify whether the + reported exceptions match that of MS.> + +2007-01-31 Gert Driesen + + * StreamReaderTest.cs: Use Assert class instead of deprecation + Assertion. Clean-up some tests. + +2007-01-30 Boris Kirzner + * FileNotFoundExceptionTest.cs: fix tests for TARGET_JVM. + +2007-01-29 Boris Kirzner + * BinaryReaderTest.cs, BinaryWriterTest.cs, PathTest.cs: test fixes + for TARGET_JVM. + +2007-01-25 Gert Driesen + + * StreamReaderTest.cs: Added test for bug #75526. + +2007-01-11 Gert Driesen + + * DirectoryTest.cs: Fixed compiler warning by improving test. + +2006-01-25 Bors Kirzner + + * DirectoryInfoTest.cs, DirectoryTest.cs, FileInfoTest.cs, FileSystemInfoTest.cs + FileTest.cs: add ifdefs for TARGET_JVM. + +2006-12-21 Gert Driesen + + * MemoryStreamTest.cs: Added (de)serialization tests for bug #80205. + 2006-11-28 Gert Driesen * DirectoryTest.cs: Use Assert.Ignore instead of silently ignoring