X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FTest%2FSystem%2FChangeLog;h=2d324c2d05bec4fee6eba82a0acd23395f1fc9d7;hb=2d604bc51eaf78195ddb571ccc179b269c876344;hp=2a7ae9e8473668a931dcc8621a81e7e2bebf2454;hpb=39c55d8fa956e3f19f138f13436d4a61b1a267fb;p=mono.git diff --git a/mcs/class/System/Test/System/ChangeLog b/mcs/class/System/Test/System/ChangeLog index 2a7ae9e8473..2d324c2d05b 100644 --- a/mcs/class/System/Test/System/ChangeLog +++ b/mcs/class/System/Test/System/ChangeLog @@ -1,3 +1,160 @@ +2006-08-01 Atsushi Enomoto + + * UriTest.cs : added Equals3(), for bug #78799. + +2005-11-25 Sebastien Pouliot + + * UriBuilderCas.cs: Fixed line endings. + * UriBuilderTest.cs: Fixed line endings and added some comments about + some NotWorking stuff. + * UriParserTest.cs: Added test cases for default parser. + * UriTest3.cs: Added more test cases for new 2.0 features. + +2005-11-15 Sebastien Pouliot + + * UriTest2.cs: Added some new test cases for old (and now fixed) Uri + bugs - #76146 and #76659. May they never surface again... + +2005-11-15 Sebastien Pouliot + + * FileStyleUriParserCas.cs: New. CAS unit tests. + * FileStyleUriParserTest.cs: New. Unit tests. + * FtpStyleUriParserCas.cs: New. CAS unit tests. + * FtpStyleUriParserTest.cs: New. Unit tests. + * GenericUriParserCas.cs: New. CAS unit tests. + * GenericUriParserTest.cs: New. Unit tests. + * GopherStyleUriParserCas.cs: New. CAS unit tests. + * GopherStyleUriParserTest.cs: New. Unit tests. + * HttpStyleUriParserCas.cs: New. CAS unit tests. + * HttpStyleUriParserTest.cs: New. Unit tests. + * LdapStyleUriParserCas.cs: New. CAS unit tests. + * LdapStyleUriParserTest.cs: New. Unit tests. + * NetPipeStyleUriParserCas.cs: New. CAS unit tests. + * NetPipeStyleUriParserTest.cs: New. Unit tests. + * NetTcpStyleUriParserCas.cs: New. CAS unit tests. + * NetTcpStyleUriParserTest.cs: New. Unit tests. + * NewsStyleUriParserCas.cs: New. CAS unit tests. + * NewsStyleUriParserTest.cs: New. Unit tests. + * UriBuilderCas.cs: Fixed line-endings. + * UriCas.cs: New. CAS unit tests. + * UriParserCas.cs: New. CAS unit tests. + * UriParserTest.cs: New. Unit tests. + * UriTest2.cs: Added some new test cases. + * UriTest3.cs: New. Unit tests for new 2.0 stuff in Uri. + * UriTest.cs: Updated and fixed (1.x/2.0 diffs) test cases. + +2005-11-14 Atsushi Enomoto + + * UriTest.cs : Added test for bug #76643. Also commented non-2.0 test + out in TestUnixLocalPath_WTF() since we don't emulate Microsoft's + idiotic behavior. + +2005-10-21 Atsushi Enomoto + + * UriBuilderTest.cs : added test for bug #76501. + +2005-10-18 Sebastien Pouliot + + * UriTypeConverterCas.cs: New. CAS unit tests. + * UriTypeConverterTest.cs: New. Unit tests for UriTypeConverter. + +2005-10-17 Sebastien Pouliot + + * UriBuilderCas.cs: New. CAS unit tests. + * UriBuilderTest.cs: Fixed tests to execute without failures under 2.0 + * UriFormatExceptionCas.cs: New. CAS unit tests. + +2005-08-17 Daniel Drake + + * UriTest.cs: Add some tests from bug #75144 + * UriBuilderTest.cs: Ignore a nonsense test for now. + +2005-07-09 Gert Driesen + + * UriTest.cs: Added RelativeUri test (for bug #71053). Modified + ParseOverride test to pass on .NET 2.0. + +2005-07-09 Gert Driesen + + * UriTest.cs: Modified port tests to pass on .NET 2.0. + HexUnescapeMultiByte passes on MS.NET 2.0. + +2005-07-02 Daniel Drake + + * UriTest.cs: Add some tests for the new multi-byte escaping + implementation in bug #74872 + +2005-06-11 Gert Driesen + + * UriTest.cs: modify tests to reflect fix for bug #75230. + +2005-06-03 Gert Driesen + + * UriTest.cs: modify tests to reflect fixes in .NET 2.0. + Added test for bug #75144. + +2005-06-03 Gert Driesen + + * UriTest.cs: fixed test failures introduced by bug fixes for + #75125 and #75128. + +2005-06-02 Gert Driesen + + * UriTest.cs: added test for bug #75124. + +2005-03-05 Gonzalo Paniagua Javier + + * UriTest2.cs: added test from bug #73316. + +2005-02-02 Ben Maurer + + * UriTest2.cs: Make this file use resources, not files. Helps with + distcheck. + +2005-01-20 Miguel de Icaza + + * UriTest.cs: Add test for bugs 71050 and 71051. + +2005-01-19 Jonathan Pryor + + * UriTest.cs: Update UnixLocalPath_WTF. Category("NotWorking") is + conditional on ONLY_1_1, and the test itself is conditional on NET_2_0 + (since .NET 2.0 behaves sanely, while 1.1 doesn't). + +2005-01-19 Jonathan Pryor + + * UriTest.cs: Ignore one of the tests on Linux, as .NET's behavior is + counterintuitive (see the UnixLocalPath_WTF comment). + +2005-01-08 Nick Drochak + + * UriTest.cs + * UriTest2.cs: Make pass on MS.NET + +2004-06-22 Atsushi Enomoto + + * UriTest.cs : As Unix paths, //foo/bar never means host == foo, + file path == /bar. So on *nix environment, interpret LocalPath of + file://foo/bar as /bar, not //foo/bar. + * test-uri-list.txt, tset-uri-props.txt : We cannot test such path + that starts with "//" in automatic one, since on Windows it is + UNC host name but on Unix it is condensed to /foo style abs path. + * UriTest2.cs : Test only on windows such path that starts with "\\". + +2004-06-16 Atsushi Enomoto + + * test-uri-list.txt, test-uri-props.txt, test-uri-props-manual.txt : + The autogenerated test contained Unix path case. Moved to manual. + +2004-06-16 Atsushi Enomoto + + * UriTest2.cs : LocalPath values should vary depending on the running + environment - so replace '/' and '\\' each other. + +2004-06-11 Atsushi Enomoto + + * UriTest.cs : Added UnixLocalPath(). + 2004-06-11 Atsushi Enomoto * UriTest.cs : Added InvalidScheme(). @@ -96,7 +253,7 @@ * UriTest.cs: Added IsUnc tests for local file paths. -2003-10-10 Pedro Martínez Julá +2003-10-10 Pedro Martínez Julá * UriTest.cs: added some test for "file://one_file.txt". Uri used to fail with this URIs.