From 292e825facff1c99ac2f37b3c3c061011f63625f Mon Sep 17 00:00:00 2001 From: Natalia Ukhorskaya Date: Thu, 26 Dec 2013 13:08:11 +0400 Subject: [PATCH] Increase timeout for android tests --- .../src/org/jetbrains/jet/compiler/run/RunUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 a2b0820412c..17410404aad 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,13 +160,13 @@ public class RunUtils { handler.startNotify(); if (settings.waitForEnd) { - handler.waitFor(800000); + handler.waitFor(1200000); if (!handler.isProcessTerminated()) { System.out.println("Output before handler.isProcessTerminated() " + settings.commandLine); System.out.println(stdOut); System.err.println(stdErr); - return new RunResult(false, "Timeout exception: execution was terminated after ~7 min."); + return new RunResult(false, "Timeout exception: execution was terminated after ~20 min."); } } else {