2008-10-07 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Wed, 7 Oct 2009 09:45:53 +0000 (09:45 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Wed, 7 Oct 2009 09:45:53 +0000 (09:45 -0000)
* TestFixtureBase.cs : until I sort out what's causing failure on
  channels shutdown, disable concurrent channels here. They block
  unit testing themselves.

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

mcs/class/System.ServiceModel/Test/FeatureBased/ChangeLog
mcs/class/System.ServiceModel/Test/FeatureBased/TestFixtureBase.cs

index 7cccb60ce28a75183271435e1fc8199958f611db..a817d810699c2efb75e3fd25a5d0d1490827897a 100644 (file)
@@ -1,3 +1,9 @@
+2008-10-07  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * TestFixtureBase.cs : until I sort out what's causing failure on
+         channels shutdown, disable concurrent channels here. They block
+         unit testing themselves.
+
 2008-04-16  Atsushi Enomoto  <atsushi@ximian.com>
 
        * TestFixtureBase.cs : Fix build.
index 42cf8fb976dc1d289d2c553ac7e2ea5de10808f7..5ebe51bfe7143828ac0b2cf5b667ac264ad2f3a3 100644 (file)
@@ -181,6 +181,7 @@ namespace MonoTests.Features
                        smb.HttpGetEnabled = true;
                        smb.HttpGetUrl = new Uri (getMexEndpoint ());
                        host.Description.Behaviors.Add (smb);
+                       host.Description.Behaviors.Add (new ServiceThrottlingBehavior () { MaxConcurrentCalls = 1, MaxConcurrentSessions = 1 });
                        if (Configuration.logMessages)
                                host.Description.Behaviors.Add (new LoggerBehavior ());
             return host;