Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Henry <ludovic@xamarin.com>2017-08-16 23:21:13 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-08-17 20:01:59 +0300
commit000682fe196a1d54b79a686e2b44beb3a516b276 (patch)
tree6b354bb53ffed768f3c76d0c362862ddbe3d673a
parent282e0fb6d3638c85308a0bec896aa099929d4aae (diff)
[corlib] Increase timeout for MonoTests.System.Runtime.Remoting.TestSynchronizationReleasedOnMultipleAcquire (#5373)
(cherry picked from commit 6e30ded2428d8b46d7e93e092d0ab95920939da1)
-rw-r--r--mcs/class/corlib/Test/System.Runtime.Remoting/SynchronizationAttributeTest.cs2
1 files changed, 1 insertions, 1 deletions
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");