Repository: spark
Updated Branches:
  refs/heads/master 259860d23 -> 943a684b9


[SPARK-20548] Disable ReplSuite.newProductSeqEncoder with REPL defined class

## What changes were proposed in this pull request?

`newProductSeqEncoder with REPL defined class` in `ReplSuite` has been failing 
in-deterministically : https://spark-tests.appspot.com/failed-tests over the 
last few days. Disabling the test until a fix is in place.

https://spark.test.databricks.com/job/spark-master-test-sbt-hadoop-2.7/176/testReport/junit/org.apache.spark.repl/ReplSuite/newProductSeqEncoder_with_REPL_defined_class/history/

## How was this patch tested?

N/A

Author: Sameer Agarwal <samee...@cs.berkeley.edu>

Closes #17823 from sameeragarwal/disable-test.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/943a684b
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/943a684b
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/943a684b

Branch: refs/heads/master
Commit: 943a684b9827ca294ed06a46431507538d40a134
Parents: 259860d
Author: Sameer Agarwal <samee...@cs.berkeley.edu>
Authored: Mon May 1 17:42:53 2017 -0700
Committer: Herman van Hovell <hvanhov...@databricks.com>
Committed: Mon May 1 17:42:53 2017 -0700

----------------------------------------------------------------------
 .../src/test/scala/org/apache/spark/repl/ReplSuite.scala          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/943a684b/repl/scala-2.11/src/test/scala/org/apache/spark/repl/ReplSuite.scala
----------------------------------------------------------------------
diff --git 
a/repl/scala-2.11/src/test/scala/org/apache/spark/repl/ReplSuite.scala 
b/repl/scala-2.11/src/test/scala/org/apache/spark/repl/ReplSuite.scala
index 121a02a..8fe2708 100644
--- a/repl/scala-2.11/src/test/scala/org/apache/spark/repl/ReplSuite.scala
+++ b/repl/scala-2.11/src/test/scala/org/apache/spark/repl/ReplSuite.scala
@@ -474,7 +474,8 @@ class ReplSuite extends SparkFunSuite {
     assertDoesNotContain("Exception", output)
   }
 
-  test("newProductSeqEncoder with REPL defined class") {
+  // TODO: [SPARK-20548] Fix and re-enable
+  ignore("newProductSeqEncoder with REPL defined class") {
     val output = runInterpreterInPasteMode("local-cluster[1,4,4096]",
       """
       |case class Click(id: Int)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to