[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / corlib / Test / System / ChangeLog
index 136bc36e666b842f8b0868a0f71a238aeb15f2de..30520808a4ce306cc6a0127dfc2830f59766d727 100644 (file)
@@ -1,3 +1,605 @@
+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.
+
+2010-03-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: New test for TryParseExact.
+
+2010-03-30  Jb Evain  <jbevain@novell.com>
+
+       * ActivatorTest.cs: add more tests to CreateInstance constructors
+       with params arrays.
+
+2010-03-30  Jb Evain  <jbevain@novell.com>
+
+       * ActivatorTest.cs: add tests for #591877.
+
+2010-03-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpan.cs: New test for ParseExact/TryParseExact.
+
+2010-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: New assertion in our exception order test, to
+       assert that int32 overflow error has higher precedence in both 2.0 and
+       4.0 profiles.
+
+2010-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpan.cs: Add some new assertions for old/new stuff in
+       TimeSpan.
+
+2010-03-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: It seems somebody forgot to actually mark the
+       TestParse method with TestAttribute. Also, add a bunch of asserions
+       to reflect the new behaviour for 4.0 in the needed test cases.
+
+2010-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: New tests for the 4.0 ToString overloads.
+
+2010-03-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * TimeSpanTest.cs: 'Port' our Parse assertions to also use TryParse.
+
+2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs : Added test for bug #574696      
+       Patch by Eberhard Beilharz <eb1@sil.org>
+
+2010-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Tests for new v4 overloads of GetType.
+
+2010-02-26 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * LazyTest.cs: Add tests for lazy modes.
+
+2010-02-26 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Test new v4 IsEnumDefined ().
+
+2010-02-24 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Test new v4 GetEnumValue ().
+
+2010-02-24 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Test new v4 GetEnumValues ().
+
+2010-02-23 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Test new v4 GetEnumNames ().
+
+2010-02-22 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs:  Test new v4 GetEnumUnderlyingType ().
+
+2010-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Test new v4 behavior for Equals.
+
+2010-01-29  Zoltan Varga  <vargaz@gmail.com>
+
+       * Int32Test.cs: Fix a copy-paste error.
+
+2010-01-29  Zoltan Varga  <vargaz@gmail.com>
+
+       * TypeTest.cs: Add a test for #574819.
+
+2010-01-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * VersionTest.cs: New tests for Parse and TryParse.
+
+2010-01-27  Zoltan Varga  <vargaz@gmail.com>
+
+       * ValueTypeTest.cs: Add a test for Equals () + nullables.
+
+2010-01-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * EnumTest.cs: New tests for the new TryParse method.
+
+2010-01-25  Zoltan Varga  <vargaz@gmail.com>
+
+       * ArrayTest.cs: Add a test for SetValue () + nullables.
+
+2010-01-25  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * SingleTest.cs : test for parsing MaxValue and PositiveInfinity.
+         Patch by Tiaan Geldenhuys.
+
+2010-01-19 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Add test for GetGenericMethodDefinition of inflated
+       generic methods on a GTD.
+
+2010-01-15  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * DateTimeTest.cs : commented out ParseExact() case that tests
+         preserved fraction.
+
+2010-01-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * Int32Test.cs: Test for TryParse with MaxValue + 1.
+
+2010-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * ArrayTest.cs: Tests for IStructuralComparer::CompareTo.
+
+2010-01-15  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * DateTimeTest.cs : added test for rounding milliseconds.
+
+2010-01-15  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * DateTimeOffsetTest.cs : add ParseExact() case that should preserve
+         fractions.
+
+2010-01-12  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * DoubleTest.cs : add test for AllowLeading/TrailingSpace flags.
+
+2010-01-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * Int32Test.cs: Add test case for exponent support in the Parse
+       methods.
+
+2010-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Test for variant use of GetInterfaceMap.
+
+2010-01-07  Jb Evain  <jbevain@novell.com>
+
+       * TypeTest.cs: add test for the MemberType of
+       a generic parameter.
+
+2010-01-07  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ConvertTest.cs: Add test case for #568778 and the default
+       line length.
+
+2010-01-03  Zoltan Varga  <vargaz@gmail.com>
+
+       * ArrayTest.cs: Add a test for #564095.
+
+2009-12-21  Marek Habersack  <mhabersack@novell.com>
+
+       * Int32Test.cs, Int64Test.cs, Int16Test.cs, ByteTest.cs: added
+       tests for formats with trailing null chars.
+
+2009-12-19  Zoltan Varga  <vargaz@gmail.com>
+
+       * StringTest.cs: Add tests for IndexOf ("", startIndex, count).
+
+2009-12-17  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * StringTest.cs: Add test case for right padding an empty string
+
+2009-12-17 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Add tests for #564379.
+
+2009-12-14 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Fix test that checked for old and wrong behavior of mono.
+
+2009-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * AttributeTest.cs: Fix a NotDotNet test since mono now implements
+       the same behavior.
+
+2009-12-09  Jb Evain  <jbevain@novell.com>
+
+       * StringComparerTest.cs: add test for null passed to a ordinal
+       comparer GetHashCode.
+
+2009-12-04 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       TypeTest.cs: Remove NET_2_0.
+
+2009-12-02  Jb Evain  <jbevain@novell.com>
+
+       * EnumTest.cs: add a test for IConvertible.ToType when converting
+       an enum to a string.
+
+2009-12-02  Jb Evain  <jbevain@novell.com>
+
+       * AttributeTest.cs: add tests for retrieving custom attributes
+       defined on parameters on virtual methods.
+
+2009-12-01  Jb Evain  <jbevain@novell.com>
+
+       * TypeTest.cs: add tests for namespaces of generic parameter types.
+
+2009-12-01  Jb Evain  <jbevain@novell.com>
+
+       * TypeTest.cs: add test for MakeByRefType on a ByRef type.
+
+2009-11-25  Zoltan Varga  <vargaz@gmail.com>
+
+       * DelegateTest.cs: Add a test for GetHashCode ().
+
+2009-11-24  Jb Evain  <jbevain@novell.com>
+
+       * ArrayTest.cs: test that we don't allow the use of the IList indexer
+       on a multi dimensional array.
+
+2009-11-24  Jb Evain  <jbevain@novell.com>
+
+       * ArrayTest: test for the proper exception on Clear ().
+
+2009-11-24  Jb Evain  <jbevain@novell.com>
+
+       * ArrayTest.cs: add test ensuring we do not allow open
+       generic types in CreateInstance.
+
+2009-11-24  Jb Evain <jbevain@novell.com>
+
+       * ArrayTest.cs: Add test ensuring we do not allow void arrays.
+
+2009-11-17  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * DateTimeOffsetTest.cs : add test for bug #547675.
+         patch by Santa Marta.
+
+2009-11-08  Juraj Skripsky  <js@hotfeet.ch>
+
+       * ArraySortArgChecks.cs: Added tests checking all possible exceptions
+       the Array.Sort method can throw. 
+
+2009-10-27  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * StringTest.cs: Add test case for methods that can return
+       empty strings.
+
+2009-10-26  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * TypeTest.cs: New. Add test cases for IsInstanceOfType
+
+2009-10-22  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * WeakReferenceTest.cs: New. Basic test cases
+
+2009-10-06  Jonathan Chambers  <joncham@gmail.com>
+
+       * StringTest.cs (Contains): Add test for Contains using
+       an Ordinal compare. Bug #535425.
+
+2009-09-24  Zoltan Varga  <vargaz@gmail.com>
+
+       * TypeTest.cs: Add a test for missing.
+
+2009-09-18  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * StringTest.cs : add more normalization tests.
+
+2009-08-26  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * TimeSpanTest.cs: Add test case where seconds are not specified.
+
+2009-07-31 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       TypeTest.cs: Add test for Type::GetArrayRank.
+
+2009-07-31 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       TypeTest.cs: Add test for Type::DeclaringMethod.
+       In special for throwing when the type is not a
+       generic param and for DeclaringMethod returning
+       a method bound to the right type.
+
+2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       TypeTest.cs: Fix the test.
+
+2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       TypeTest.cs: Add test for one-dym multidimensional array
+       created with Type::MakeArrayType (1).
+
+2009-07-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * ArrayTest.cs: new LastIndexOf test for 0-length arrays.
+
+2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * AttributeTest.cs: Add tests for user types passed to
+       Attribute.GetCustomAttribute[s].
+       
+2009-07-12  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * TypeTest.cs: Enabled test that was failing due to regression.
+
+2009-07-10  Zoltan Varga  <vargaz@gmail.com>
+
+       * TypeTest.cs: Add a test for #520690. Disable a test which fails on
+       MS.NET.
+
+2009-06-30  Zoltan Varga  <vargaz@gmail.com>
+
+       * IntPtrTest.cs: Disable a test whose corresponding fix was reverted.
+
+       * *.cs: Convert all tests to new-style nunit classes/methods. Enable
+       some hidden tests.
+
+       * ObjectTest.cs RandomTest.cs SByteTest.cs SingleTest.cs 
+       TimeZoneTest.cs UInt16Test.cs UInt32Test.cs UInt64Test.cs 
+       UIntPtrTest.cs ValueTypeTest.cs: Convert all tests to new-style nunit 
+       classes/methods. Enable some hidden tests.
+
+2009-06-26  Robert Jordan  <robertj@gmx.net>
+
+       * StringTest.cs: Convert all tests to new-style nunit 
+       classes/methods.
+
+       * ArrayTest.cs, ConvertTest.cs, DecimalTest.cs, TimeSpanTest.cs:
+       likewise.
+
+       * DecimalTest2.cs: likewise, 5 hidden tests enabled.
+
+2009-06-26  Zoltan Varga  <vargaz@gmail.com>
+
+       * NumberFormatterTest.cs: Convert all tests to new-style nunit 
+       classes/methods.
+
+2009-06-19  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * StringTest.cs : Fix the previous test. It was expecting wrong
+         results. Added another NFC composition test.
+
+2009-06-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * DateTimeTest.cs: add test for parsing a negative timezone.
+       * DateTimeOffsetTest.cs: several tests for Parse.
+
+2009-06-16  Zoltan Varga  <vargaz@gmail.com>
+
+       * StringTest.cs: Fix make check.
+
+2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * StringTest.cs : added string normalization test.
+
+2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: test for bug #506757.
+
+2009-05-22  Zoltan Varga  <vargaz@gmail.com>
+
+       * LazyTest.cs: New file.
+
+2009-05-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * TypeTest.cs: test for bug #503728
+
+2009-05-01  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * AppDomainManagerTest.cs: New. Unit test for CheckSecuritySettings
+
+2009-04-30  Zoltan Varga  <vargaz@gmail.com>
+
+       * AppDomainTest.cs: Add a test for #499013.
+
+2009-04-10  Zoltan Varga  <vargaz@gmail.com>
+
+       * ArrayTest.cs: Add a test for ICollection:IsReadOnly on generic arrays.
+
+2009-03-27  Zoltan Varga  <vargaz@gmail.com>
+
+       * DelegateTest.cs: Mark a test as working.
+
+2009-03-25  Jb Evain  <jbevain@novell.com>
+
+       * DelegateTest.cs: add new CreateDelegate test.
+
+2009-03-25  Jb Evain  <jbevain@novell.com>
+
+       * DelegateTest.cs: add CreateDelegate tests for valuetype -> object
+       conversion for arguments and return types.
+
+2009-03-23  Zoltan Varga  <vargaz@gmail.com>
+
+       * StringTest.cs (LastIndexOfStringComparison): Add a test for #486234.
+
+2009-03-18  Zoltan Varga  <vargaz@gmail.com>
+
+       * TypeTest.cs: Add more tests for user types.
+
+2009-03-15  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * ConvertTest.cs: Avoid false positive in ChangeType test. 
+
+2009-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * ConvertTest.cs: Merged and improved test for bug #481687.
+       * ConvertTest2.cs: Merged into ConvertTest.cs.
+
+2009-02-27  Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * EnumTest.cs: Tests for CompareTo.
+
+2009-02-02  Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * TypeTest.cs: Add a test for #471255.
+
+2009-01-27  Zoltan Varga  <vargaz@gmail.com>
+
+       * TypeTest.cs: Add a test for #467229.
+
+2009-01-06  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * DateTimeTest.cs : added test for parsing no-millisecond time
+         with optional millisecond designator.
+
+2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * TypeTest.cs: new test for Type.GetType.
+
+2008-11-06  Bill Holmes  <billholmes54@gmail.com>
+
+       * TypeTest.cs: TypeGetMemberReturnTypeTest added to check that the
+         instantiated type of the returned MemberInfo array matches the
+         MemberTypes flag passed in.
+
+       Contributed under MIT/X11 license.
+
+2008-10-07  Marek Habersack  <mhabersack@novell.com>
+
+       * MathTest.cs: added tests for rounding doubles with truncation in
+       the away from zero mode.
+
+2008-09-25  Marek Habersack  <mhabersack@novell.com>
+
+       * DoubleTest.cs: added a test for TryParse invoked with various
+       strings, including strings with embedded whitespace.
+
+2008-09-24  Jb Evain  <jbevain@novell.com>
+
+       * AppDomainSetupTest.cs: fix domain initializer test to actually
+       assert that the initializer delegate is called in the new domain.
+       Test for #429545.
+
 2008-09-24  Jb Evain  <jbevain@novell.com>
 
        * AppDomainTest.cs: add test for bug #429545.