From c1a8f27b996d69b00af0c321debd4b047781c331 Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Thu, 21 Mar 2013 19:17:05 +0400 Subject: [PATCH] Process waiting time increased x2 --- .../src/org/jetbrains/jet/compiler/run/RunUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/android-tests/src/org/jetbrains/jet/compiler/run/RunUtils.java b/compiler/android-tests/src/org/jetbrains/jet/compiler/run/RunUtils.java index 618dd14b934..a2b0820412c 100644 --- a/compiler/android-tests/src/org/jetbrains/jet/compiler/run/RunUtils.java +++ b/compiler/android-tests/src/org/jetbrains/jet/compiler/run/RunUtils.java @@ -160,7 +160,7 @@ public class RunUtils { handler.startNotify(); if (settings.waitForEnd) { - handler.waitFor(400000); + handler.waitFor(800000); if (!handler.isProcessTerminated()) { System.out.println("Output before handler.isProcessTerminated() " + settings.commandLine);