aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorAaron Davidson <aaron@databricks.com>2013-11-29 13:20:35 -0800
committerAaron Davidson <aaron@databricks.com>2013-11-29 13:20:43 -0800
commit96df26be474abe89a8dd83da08fc27903ad19ba7 (patch)
treecf887af46a957f84f8edbf21dee0612fe32c551a /core
parent081a0b6861321d262a82166bc1df61959e9c6387 (diff)
downloadspark-96df26be474abe89a8dd83da08fc27903ad19ba7.tar.gz
spark-96df26be474abe89a8dd83da08fc27903ad19ba7.tar.bz2
spark-96df26be474abe89a8dd83da08fc27903ad19ba7.zip
Add spaces between tests
Diffstat (limited to 'core')
-rw-r--r--core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala b/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala
index 61d6163659..151af0d213 100644
--- a/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala
+++ b/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala
@@ -99,9 +99,11 @@ class SparkContextSchedulerCreationSuite
case e: Throwable => fail(e)
}
}
+
test("yarn-standalone") {
testYarn("yarn-standalone", "org.apache.spark.scheduler.cluster.YarnClusterScheduler")
}
+
test("yarn-client") {
testYarn("yarn-client", "org.apache.spark.scheduler.cluster.YarnClientClusterScheduler")
}
@@ -120,14 +122,17 @@ class SparkContextSchedulerCreationSuite
case e: Throwable => fail(e)
}
}
+
test("mesos fine-grained") {
System.setProperty("spark.mesos.coarse", "false")
testMesos("mesos://localhost:1234", classOf[MesosSchedulerBackend])
}
+
test("mesos coarse-grained") {
System.setProperty("spark.mesos.coarse", "true")
testMesos("mesos://localhost:1234", classOf[CoarseMesosSchedulerBackend])
}
+
test("mesos with zookeeper") {
System.setProperty("spark.mesos.coarse", "false")
testMesos("zk://localhost:1234,localhost:2345", classOf[MesosSchedulerBackend])