Author: spouliot
Date: 2005-05-02 15:02:30 -0400 (Mon, 02 May 2005)
New Revision: 43897

Modified:
   trunk/mcs/class/corlib/Test/System.Reflection/AssemblyTest.cs
   trunk/mcs/class/corlib/Test/System.Reflection/ChangeLog
   trunk/mcs/class/corlib/Test/System.Reflection/FieldInfoTest.cs
   trunk/mcs/class/corlib/Test/System.Reflection/MethodInfoTest.cs
Log:
2005-05-02  Sebastien Pouliot  <[EMAIL PROTECTED]>

        * AssemblyTest.cs, FieldInfoTest.cs, MethodInfoTest.cs: Disabled 
        ReflectionOnly tests as they break every tests afterward. Calberto
        is looking for the problem...



Modified: trunk/mcs/class/corlib/Test/System.Reflection/AssemblyTest.cs
===================================================================
--- trunk/mcs/class/corlib/Test/System.Reflection/AssemblyTest.cs       
2005-05-02 18:40:30 UTC (rev 43896)
+++ trunk/mcs/class/corlib/Test/System.Reflection/AssemblyTest.cs       
2005-05-02 19:02:30 UTC (rev 43897)
@@ -220,6 +220,7 @@
                }
 #if NET_2_0
                [Test]
+               [Category ("NotWorking")]
                public void ReflectionOnlyLoad ()
                {
                        Assembly assembly = Assembly.ReflectionOnlyLoad (typeof 
(AssemblyTest).Assembly.FullName);
@@ -229,6 +230,7 @@
                }
 
                [Test]
+               [Category ("NotWorking")]
                public void ReflectionOnlyLoadFrom ()
                {
                        string loc = typeof (AssemblyTest).Assembly.Location;
@@ -241,6 +243,7 @@
 
                [Test]
                [ExpectedException (typeof (ArgumentException))]
+               [Category ("NotWorking")]
                public void CreateInstanceOnRefOnly ()
                {
                        Assembly assembly = Assembly.ReflectionOnlyLoad (typeof 
(AssemblyTest).Assembly.FullName);

Modified: trunk/mcs/class/corlib/Test/System.Reflection/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/Test/System.Reflection/ChangeLog     2005-05-02 
18:40:30 UTC (rev 43896)
+++ trunk/mcs/class/corlib/Test/System.Reflection/ChangeLog     2005-05-02 
19:02:30 UTC (rev 43897)
@@ -1,3 +1,9 @@
+2005-05-02  Sebastien Pouliot  <[EMAIL PROTECTED]>
+
+       * AssemblyTest.cs, FieldInfoTest.cs, MethodInfoTest.cs: Disabled 
+       ReflectionOnly tests as they break every tests afterward. Calberto
+       is looking for the problem...
+
 2005-04-28  Sebastien Pouliot  <[EMAIL PROTECTED]>
 
        * AssemblyCas.cs: New. CAS unit tests for Assembly.

Modified: trunk/mcs/class/corlib/Test/System.Reflection/FieldInfoTest.cs
===================================================================
--- trunk/mcs/class/corlib/Test/System.Reflection/FieldInfoTest.cs      
2005-05-02 18:40:30 UTC (rev 43896)
+++ trunk/mcs/class/corlib/Test/System.Reflection/FieldInfoTest.cs      
2005-05-02 19:02:30 UTC (rev 43897)
@@ -98,6 +98,7 @@
 
        [Test]
        [ExpectedException (typeof (InvalidOperationException))]
+       [Category ("NotWorking")]
        public void GetValueOnRefOnlyAssembly ()
        {
                Assembly assembly = Assembly.ReflectionOnlyLoad (typeof 
(FieldInfoTest).Assembly.FullName);
@@ -109,6 +110,7 @@
        
        [Test]
        [ExpectedException (typeof (InvalidOperationException))]
+       [Category ("NotWorking")]
        public void SetValueOnRefOnlyAssembly ()
        {
                Assembly assembly = Assembly.ReflectionOnlyLoad (typeof 
(FieldInfoTest).Assembly.FullName);

Modified: trunk/mcs/class/corlib/Test/System.Reflection/MethodInfoTest.cs
===================================================================
--- trunk/mcs/class/corlib/Test/System.Reflection/MethodInfoTest.cs     
2005-05-02 18:40:30 UTC (rev 43896)
+++ trunk/mcs/class/corlib/Test/System.Reflection/MethodInfoTest.cs     
2005-05-02 19:02:30 UTC (rev 43897)
@@ -156,6 +156,7 @@
 
                [Test]
                [ExpectedException (typeof (InvalidOperationException))]
+               [Category ("NotWorking")]
                public void InvokeOnRefOnlyAssembly ()
                {
                        Assembly a = Assembly.ReflectionOnlyLoad (typeof 
(MethodInfoTest).Assembly.FullName);

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to