[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / corlib / Test / System / ChangeLog
index a6e027f46dfe24f0d4669c16d303539851a5c251..30520808a4ce306cc6a0127dfc2830f59766d727 100644 (file)
@@ -1,3 +1,142 @@
+2010-07-05  Jb Evain  <jbevain@novell.com>
+
+       * TypeTest.cs: prefixed TypedReference with global:: to
+       remove confusion with the test suite namespace.
+
+2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Add tests for #612780.
+
+2010-06-29  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * AttributeTest.cs: Add test cases for GetHashCode
+
+2010-06-25  Zoltan Varga  <vargaz@gmail.com>
+
+       * ArrayTest.cs: Add a test for #616416.
+
+2010-06-22  Jb Evain  <jbevain@novell.com>
+
+       * GuidTest.cs: add tests for #616050.
+
+2010-06-15  Jonathan Pryor  <jpryor@novell.com>
+
+       * ConvertTest.cs: Add tests for #596339.
+
+2010-06-08  Jonathan Pryor  <jpryor@novell.com>
+
+       * StringTest.cs: Add tests for #601772 (i.e. take SplitStringChars(),
+         change all the chars to Strings, and things should work).
+
+2010-06-04  Damien Diederen  <dd@crosstwine.com>
+
+       * CharTest.cs: Add tests for astral plane characters/surrogate
+       pairs.
+
+         - Show that Char.GetUnicodeCategory(string,int) results in a
+           lookup into the higher planes of the Unicode database when invoked
+           on a valid surrogate pair, and returns the "normal" category code
+           otherwise.
+
+         - Perform a few sanity checks on the results of ConvertFromUtf32
+           and GetUnicodeCategory when invoked on codepoints from the
+           higher planes.
+
+2010-06-04  Damien Diederen  <dd@crosstwine.com>
+
+       * CharCategoryTest.cs, CharTest.cs: Update category dumps to match
+       MS .NET.
+
+       The category codes in newer versions of Microsoft's framework are
+       not compatible with the ones encoded in this class, causing tests
+       to fail.  Fix that by using new sets of dumps generated under
+       v3.5.21022 and v4.0.30319.
+
+       Also, drop CharTest.IsWhiteSpace_Complete as the same checks
+       are performed by CharCategoryTest.IsWhiteSpace.
+
+       While we are at it, improve the generator so that:
+
+         - common code is shared between the generator and the test;
+
+         - a number of test cases can be generated at once via
+           command-line arguments;
+
+         - the dumps are word-wrapped, enhancing legibility and avoiding
+           line length limitations in some compilers.
+
+2010-05-31 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * LazyTest.cs: Add a test that actually test something.
+
+2010-05-17  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * EnumTest.cs : add test for bug #604134.
+
+2010-05-17  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * StringTest.cs : add test for bug #605094.
+
+2010-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: New test for ToString using custom formats.
+
+2010-04-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: Update our test after the 4.0 release.
+
+2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Add tests for #331126.
+
+2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Fix the test suite.
+
+2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Add regression test for #473289.
+
+2010-04-19  Zoltan Varga  <vargaz@gmail.com>
+
+       * *.cs: Fix warnings.
+
+2010-04-19  Zoltan Varga  <vargaz@gmail.com>
+
+       * StringTest.cs: Add a test for #597604.
+
+2010-04-18  Zoltan Varga  <vargaz@gmail.com>
+
+       * CharTest.cs: Add missing [TestFixture] attribute.
+
+2010-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Add regression test for #484246.
+
+2010-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * AttributeTest.cs: Add regression test for #499569.
+
+2010-04-15  Jb Evain  <jbevain@novell.com>
+
+       * GuidTest.cs: add tests for net_4_0 ParseExact methods.
+
+2010-04-13  Zoltan Varga  <vargaz@gmail.com>
+
+       * ConvertTest.cs: Add a test for #596339.
+
+2010-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: Remove "NotWorking" from our custom formats parse
+       methods, as well as augmenting the test with some new assertions, and
+       changing a pair to properly reflect what they are testing.
+
+2010-04-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: Augment our ParseExactCustomFormats test - still
+       marked as NotWorking for now, but committing now in order to have the
+       tests ready.
+
 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
 
        * TypeTest.cs: Fix test for v4 Equals behavior.