[corlib] Increase timeout for MonoTests.System.Runtime.Remoting.TestSynchronizationRe...
[mono.git] / 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");