From: Ludovic Henry Date: Wed, 16 Aug 2017 20:21:13 +0000 (+0200) Subject: [corlib] Increase timeout for MonoTests.System.Runtime.Remoting.TestSynchronizationRe... X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=6e30ded2428d8b46d7e93e092d0ab95920939da1 [corlib] Increase timeout for MonoTests.System.Runtime.Remoting.TestSynchronizationReleasedOnMultipleAcquire (#5373) --- diff --git a/mcs/class/corlib/Test/System.Runtime.Remoting/SynchronizationAttributeTest.cs b/mcs/class/corlib/Test/System.Runtime.Remoting/SynchronizationAttributeTest.cs index 4005d1ad6c5..8693bdfbe5e 100644 --- a/mcs/class/corlib/Test/System.Runtime.Remoting/SynchronizationAttributeTest.cs +++ b/mcs/class/corlib/Test/System.Runtime.Remoting/SynchronizationAttributeTest.cs @@ -341,7 +341,7 @@ namespace MonoTests.System.Runtime.Remoting Thread tr = new Thread (new ThreadStart (CallbackThread)); tr.Start(); - bool terminated = tr.Join(2000); + bool terminated = tr.Join(10000); Assert.IsTrue(terminated, "Thread didn't get lock of context bound object."); Assert.IsTrue (!otResult, "Concurrency detected in CallbackThread");