aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/scala
diff options
context:
space:
mode:
authorjerryshao <sshao@hortonworks.com>2016-02-22 00:57:10 -0800
committerReynold Xin <rxin@databricks.com>2016-02-22 00:57:10 -0800
commit39ff15457026767a4d9ff191174fc85e7907f489 (patch)
treec53bffeb5174fc07987a9ec2878829cbc77985c7 /core/src/test/scala
parent8a4ed78869e99c7de7062c3baa0ddb9d28c8e9b1 (diff)
downloadspark-39ff15457026767a4d9ff191174fc85e7907f489.tar.gz
spark-39ff15457026767a4d9ff191174fc85e7907f489.tar.bz2
spark-39ff15457026767a4d9ff191174fc85e7907f489.zip
[SPARK-13426][CORE] Remove the support of SIMR
## What changes were proposed in this pull request? This PR removes the support of SIMR, since SIMR is not actively used and maintained for a long time, also is not supported from `SparkSubmit`, so here propose to remove it. ## How was the this patch tested? This patch is tested locally by running unit tests. Author: jerryshao <sshao@hortonworks.com> Closes #11296 from jerryshao/SPARK-13426.
Diffstat (limited to 'core/src/test/scala')
-rw-r--r--core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala9
1 files changed, 1 insertions, 8 deletions
diff --git a/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala b/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala
index 52919c1ec0..b96c937f02 100644
--- a/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala
+++ b/core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala
@@ -20,7 +20,7 @@ package org.apache.spark
import org.scalatest.PrivateMethodTester
import org.apache.spark.scheduler.{SchedulerBackend, TaskScheduler, TaskSchedulerImpl}
-import org.apache.spark.scheduler.cluster.{SimrSchedulerBackend, SparkDeploySchedulerBackend}
+import org.apache.spark.scheduler.cluster.SparkDeploySchedulerBackend
import org.apache.spark.scheduler.cluster.mesos.{CoarseMesosSchedulerBackend, MesosSchedulerBackend}
import org.apache.spark.scheduler.local.LocalBackend
import org.apache.spark.util.Utils
@@ -115,13 +115,6 @@ class SparkContextSchedulerCreationSuite
}
}
- test("simr") {
- createTaskScheduler("simr://uri").backend match {
- case s: SimrSchedulerBackend => // OK
- case _ => fail()
- }
- }
-
test("local-cluster") {
createTaskScheduler("local-cluster[3, 14, 1024]").backend match {
case s: SparkDeploySchedulerBackend => // OK