Repository: spark Updated Branches: refs/heads/master b64fcbd2d -> 157e7d0f6
HOTFIX: Ignore flaky tests in YARN Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/157e7d0f Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/157e7d0f Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/157e7d0f Branch: refs/heads/master Commit: 157e7d0f62eaf016a0c3749065ddcec170540a36 Parents: b64fcbd Author: Patrick Wendell <[email protected]> Authored: Tue Sep 30 09:46:58 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Tue Sep 30 09:46:58 2014 -0700 ---------------------------------------------------------------------- .../scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/157e7d0f/yarn/stable/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala ---------------------------------------------------------------------- diff --git a/yarn/stable/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala b/yarn/stable/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala index 857a444..4b66356 100644 --- a/yarn/stable/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala +++ b/yarn/stable/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala @@ -86,13 +86,13 @@ class YarnClusterSuite extends FunSuite with BeforeAndAfterAll with Matchers { super.afterAll() } - test("run Spark in yarn-client mode") { + ignore("run Spark in yarn-client mode") { var result = File.createTempFile("result", null, tempDir) YarnClusterDriver.main(Array("yarn-client", result.getAbsolutePath())) checkResult(result) } - test("run Spark in yarn-cluster mode") { + ignore("run Spark in yarn-cluster mode") { val main = YarnClusterDriver.getClass.getName().stripSuffix("$") var result = File.createTempFile("result", null, tempDir) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
