aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMarcelo Vanzin <vanzin@cloudera.com>2015-10-22 22:41:21 -0700
committerReynold Xin <rxin@databricks.com>2015-10-22 22:41:21 -0700
commitfa6a4fbf08c8cca36cbe9f0d2bd20bc7be2ca45d (patch)
tree92b8efcf2f31ad972730039727a09a7e48be8c3f /core
parenta88c66ca8780c7228dc909f904d31cd9464ee0e3 (diff)
downloadspark-fa6a4fbf08c8cca36cbe9f0d2bd20bc7be2ca45d.tar.gz
spark-fa6a4fbf08c8cca36cbe9f0d2bd20bc7be2ca45d.tar.bz2
spark-fa6a4fbf08c8cca36cbe9f0d2bd20bc7be2ca45d.zip
[SPARK-11134][CORE] Increase LauncherBackendSuite timeout.
This test can take a little while to finish on slow / loaded machines. Author: Marcelo Vanzin <vanzin@cloudera.com> Closes #9235 from vanzin/SPARK-11134.
Diffstat (limited to 'core')
-rw-r--r--core/src/test/scala/org/apache/spark/launcher/LauncherBackendSuite.scala4
1 files 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 07e8869833..639d1daa36 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 {