2005-03-23 Martin Baulig <martin@ximian.com>
authorMartin Baulig <martin@novell.com>
Wed, 23 Mar 2005 11:53:06 +0000 (11:53 -0000)
committerMartin Baulig <martin@novell.com>
Wed, 23 Mar 2005 11:53:06 +0000 (11:53 -0000)
* TypeBuilderTest.cs (TestIsAssignableTo_NotDotNet): Put this
whole method into the "NotWorking" category.

svn path=/trunk/mcs/; revision=42138

mcs/class/corlib/Test/System.Reflection.Emit/ChangeLog
mcs/class/corlib/Test/System.Reflection.Emit/TypeBuilderTest.cs

index 90828f8fc15164b106dd55207f387d3dac8f3338..5df0bffc8e209e04b78eb76c3c13e679ac10d942 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-23  Martin Baulig  <martin@ximian.com>
+
+       * TypeBuilderTest.cs (TestIsAssignableTo_NotDotNet): Put this
+       whole method into the "NotWorking" category.
+
 2005-03-23  Martin Baulig  <martin@ximian.com>
 
        * TypeBuilderTest.cs: Disable last test again since the bug report
index 6ae0a2400f2bda50599264e6fdee8267cbbd783f..d6cdbeb335caaca14530b6c4545b7c27eca8b084 100644 (file)
@@ -1778,6 +1778,7 @@ public class TypeBuilderTest : Assertion
 
        [Test]
        [Category("NotDotNet")]
+       [Category("NotWorking")]
        public void TestIsAssignableTo_NotDotNet () {
                Type icomparable = typeof (IComparable);
 
@@ -1791,7 +1792,7 @@ public class TypeBuilderTest : Assertion
                Assert ("02", tb.IsAssignableFrom (typeof (IDisposable)));
 
                // bug #73469
-               // Assert ("07", typeof (Bar[]).IsAssignableFrom (module.GetType (tb.FullName + "[]")));
+               Assert ("07", typeof (Bar[]).IsAssignableFrom (module.GetType (tb.FullName + "[]")));
        }
 }
 }