aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Wendell <patrick@databricks.com>2015-05-23 19:44:03 -0700
committerPatrick Wendell <patrick@databricks.com>2015-05-23 19:44:03 -0700
commit3c1a2d049cd4bf35fd48a032f5008b7bab60833e (patch)
tree15b759a9e9bac5e5295e857e5ccb366275a6e5b6
parentb231baa24857ea83c8062dd4e033db4e35bf457d (diff)
downloadspark-3c1a2d049cd4bf35fd48a032f5008b7bab60833e.tar.gz
spark-3c1a2d049cd4bf35fd48a032f5008b7bab60833e.tar.bz2
spark-3c1a2d049cd4bf35fd48a032f5008b7bab60833e.zip
[SPARK-7287] [HOTFIX] Disable o.a.s.deploy.SparkSubmitSuite --packages
-rw-r--r--core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala b/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
index 8f64ab5e42..ea9227a7e9 100644
--- a/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
+++ b/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
@@ -335,7 +335,8 @@ class SparkSubmitSuite extends FunSuite with Matchers with ResetSystemProperties
runSparkSubmit(args)
}
- test("includes jars passed in through --packages") {
+ // SPARK-7287
+ ignore("includes jars passed in through --packages") {
val unusedJar = TestUtils.createJarWithClasses(Seq.empty)
val main = MavenCoordinate("my.great.lib", "mylib", "0.1")
val dep = MavenCoordinate("my.great.dep", "mylib", "0.1")