2009-05-24 Robert Jordan <robertj@gmx.net>
authorRobert Jordan <robertj@gmx.net>
Sun, 24 May 2009 13:47:34 +0000 (13:47 -0000)
committerRobert Jordan <robertj@gmx.net>
Sun, 24 May 2009 13:47:34 +0000 (13:47 -0000)
* GenericTest.cs (TestCrossAppDomainChannel): disable on MS.NET as
some generic calls do not seem to be supported anymore. It looks
like a bug, though, since the same tests are passing when performed
over the TCP channel.

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

mcs/class/System.Runtime.Remoting/Test/ChangeLog
mcs/class/System.Runtime.Remoting/Test/GenericTest.cs

index 6bb5cc50ecf3a8d17d1a2288842344d9ad17c890..6680e9c53c290d4319df26e220fe23bd1f9f442e 100644 (file)
@@ -1,3 +1,10 @@
+2009-05-24  Robert Jordan  <robertj@gmx.net>
+
+       * GenericTest.cs (TestCrossAppDomainChannel): disable on MS.NET as
+       some generic calls do not seem to be supported anymore. It looks
+       like a bug, though, since the same tests are passing when performed
+       over the TCP channel.
+
 2009-05-24  Robert Jordan  <robertj@gmx.net>
 
        * GenericTest.cs (TestTcpChannel): create a unique channel and
index 6d8ed0e2b0abd9e2b89a801abf6ec755336d10f9..1afface21b4b3488fb403f015f7bcbf1f4cf3d38 100644 (file)
@@ -153,6 +153,11 @@ namespace MonoTests.Remoting
        [TestFixture]
        public class GenericTest
        {
+               // Under MS.NET, INested.Test<V>(V v) isn't supported over the
+               // xappdom channel anymore (as of .NET 3.5). The stacktrace
+               // looks like if INested.Test(int) is invoked in place of
+               // INested.Test<int>(int).
+               [Category("NotDotNet")]
                [Test]
                public void TestCrossAppDomainChannel ()
                {