Add spaces between tests
Project: http://git-wip-us.apache.org/repos/asf/incubator-spark/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-spark/commit/96df26be Tree: http://git-wip-us.apache.org/repos/asf/incubator-spark/tree/96df26be Diff: http://git-wip-us.apache.org/repos/asf/incubator-spark/diff/96df26be Branch: refs/heads/master Commit: 96df26be474abe89a8dd83da08fc27903ad19ba7 Parents: 081a0b6 Author: Aaron Davidson <[email protected]> Authored: Fri Nov 29 13:20:35 2013 -0800 Committer: Aaron Davidson <[email protected]> Committed: Fri Nov 29 13:20:43 2013 -0800 ---------------------------------------------------------------------- .../org/apache/spark/SparkContextSchedulerCreationSuite.scala | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/96df26be/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala b/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala index 61d6163..151af0d 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])
