2004-01-03 Ben Maurer <bmaurer@users.sourceforge.net>
[mono.git] / mcs / tests / README.tests
index 2fd9768f45d5f59ecf81ccf20814e94731ed0b19..4e261ba2fbf51cf82b90bf07549f4ed74bd5ff38 100644 (file)
@@ -15,7 +15,7 @@ Test cases listed by Category:
 
 * Indexers and Properties
 
-  test-148.cs test-166.cs test-206.cs test-208.cs test-209.cs
+  test-148.cs test-166.cs test-206.cs test-208.cs test-209.cs test-221.cs
 
 * Events and Delegates
 
@@ -35,7 +35,7 @@ Test cases listed by Category:
 
 * Invocation and Casts
 
-  test-153.cs test-163.c test-207.cs test-210.cs test-211.cs
+  test-153.cs test-163.c test-207.cs test-210.cs test-211.cs test-223.cs
 
 * Flow Analysis
 
@@ -383,6 +383,40 @@ test-216.cs:
 ------------
 Accessability bug fix #48710 on events
 
+test-217.cs
+-----------
+
+>= and <= operators; bug #48679
+
+test-218.cs
+-----------
+Tests delegate creation inside an array;  This exposed a bug in the
+fact that New is called for DoResolve twice from array initialization.
+Bug #48800
+
+test-219.cs:
+------------
+Tests that we can call typeof(void) in an attribtue delcaration, since
+we removed previously typeof (System.Void) as a valid way of referencing void.
+
+test-220.cs:
+------------
+Test for a bug in foreach, where it would pick the wrong GetEnumerator in a class.
+Bug # was 51446
+
+test-221.cs:
+------------
+Test for correct scanning for base properties.
+
+test-222.cs:
+------------
+Compilation test to check overload resolution. We should prefer int->uint over int->ulong.
+
+test-223.cs:
+------------
+This tests that conversions from Enum and ValueType to structs
+are treated as unboxing conversions, and the `unbox' opcode
+is emitted. #52569.
 
 verify-1.cs
 -----------
@@ -461,3 +495,8 @@ gen-10.cs:
 ----------
 
 `where T : I, J' - I is an inferface, J a class.
+
+gen-15.cs:
+----------
+
+Generic methods.