From 60b812e3dd6e949621f0c36944b07cf7b3fcd890 Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Wed, 6 Dec 2017 10:52:09 +0100 Subject: [PATCH] Increase android emulator startup await --- .../org/jetbrains/kotlin/android/tests/emulator/Emulator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/android-tests/src/org/jetbrains/kotlin/android/tests/emulator/Emulator.java b/compiler/android-tests/src/org/jetbrains/kotlin/android/tests/emulator/Emulator.java index fd90face6f4..56c6217245a 100644 --- a/compiler/android-tests/src/org/jetbrains/kotlin/android/tests/emulator/Emulator.java +++ b/compiler/android-tests/src/org/jetbrains/kotlin/android/tests/emulator/Emulator.java @@ -157,7 +157,7 @@ public class Emulator { bootCheckCommand.addParameter("sys.boot_completed"); int counter = 0; RunResult execute = RunUtils.execute(bootCheckCommand); - while (counter < 12) { + while (counter < 20) { String output = execute.getOutput(); if (output.trim().endsWith("1")) { System.out.println("Emulator fully booted!");