From d3ee9252dadaf1024fd3e9847a5c91c37224d703 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexander=20K=C3=B6plinger?= Date: Tue, 4 Nov 2014 11:38:01 +0100 Subject: [PATCH] [System.ServiceModel] Fixed Bug652331_2 test that failed on Jenkins by increasing timeout Looks like the test takes quite a while so 10 seconds was just too short. Increasing the timeout to 20s seems to fix it. --- .../Test/System.ServiceModel.Dispatcher/Bug652331Test.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcs/class/System.ServiceModel/Test/System.ServiceModel.Dispatcher/Bug652331Test.cs b/mcs/class/System.ServiceModel/Test/System.ServiceModel.Dispatcher/Bug652331Test.cs index d0e0ea09ba0..ed5fb8b65c9 100644 --- a/mcs/class/System.ServiceModel/Test/System.ServiceModel.Dispatcher/Bug652331Test.cs +++ b/mcs/class/System.ServiceModel/Test/System.ServiceModel.Dispatcher/Bug652331Test.cs @@ -70,7 +70,7 @@ namespace MonoTests.System.ServiceModel.Dispatcher }; client.GetDataAsync (); - if (!wait.WaitOne (TimeSpan.FromSeconds (10))) + if (!wait.WaitOne (TimeSpan.FromSeconds (20))) Assert.Fail ("timeout"); } finally { serviceHost.Close (); -- 2.11.4.GIT