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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriain holmes <iain@xamarin.com>2015-06-10 12:59:43 +0300
committeriain holmes <iain@xamarin.com>2015-06-10 12:59:43 +0300
commit4c8373f88b590d8c407abc7223f07cbc17111d3d (patch)
treeff5a4a25ad7c878215ec74b69a52de4c2b95e4b4 /main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest
parenteb7e93691c897aded35e6d51412ddf4a712a48cc (diff)
[Test Framework] Give Monodevelop 120seconds to start rather than 15.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs
index ac3640a90b..70875b45a8 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs
@@ -82,7 +82,7 @@ namespace MonoDevelop.Components.AutoTest
process = Process.Start (pi);
- if (!waitEvent.WaitOne (15000)) {
+ if (!waitEvent.WaitOne (120000)) {
try {
process.Kill ();
} catch { }