From b265ec2fc69d781e07dfa6ab9021864760d7e7a1 Mon Sep 17 00:00:00 2001 From: Marcelo Vanzin Date: Thu, 22 Oct 2015 15:49:08 -0700 Subject: [PATCH] [SPARK-11134] [core] Increase LauncherBackendSuite timeout. This test can take a little while to finish on slow / loaded machines. --- .../org/apache/spark/launcher/LauncherBackendSuite.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/test/scala/org/apache/spark/launcher/LauncherBackendSuite.scala b/core/src/test/scala/org/apache/spark/launcher/LauncherBackendSuite.scala index 07e8869833e95..639d1daa36c73 100644 --- a/core/src/test/scala/org/apache/spark/launcher/LauncherBackendSuite.scala +++ b/core/src/test/scala/org/apache/spark/launcher/LauncherBackendSuite.scala @@ -54,13 +54,13 @@ class LauncherBackendSuite extends SparkFunSuite with Matchers { .startApplication() try { - eventually(timeout(10 seconds), interval(100 millis)) { + eventually(timeout(30 seconds), interval(100 millis)) { handle.getAppId() should not be (null) } handle.stop() - eventually(timeout(10 seconds), interval(100 millis)) { + eventually(timeout(30 seconds), interval(100 millis)) { handle.getState() should be (SparkAppHandle.State.KILLED) } } finally {