[corlib] Increase timeout for MonoTests.System.Runtime.Remoting.TestSynchronizationRe...
authorLudovic Henry <ludovic@xamarin.com>
Wed, 16 Aug 2017 20:21:13 +0000 (22:21 +0200)
committerGitHub <noreply@github.com>
Wed, 16 Aug 2017 20:21:13 +0000 (22:21 +0200)
mcs/class/corlib/Test/System.Runtime.Remoting/SynchronizationAttributeTest.cs

index 4005d1ad6c56783437c7dc1339473b5cc4e2e445..8693bdfbe5ec8b6cb1a76bf68ecbe5b91befd154 100644 (file)
@@ -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");