Skip to content

Commit

Permalink
[SPARK-8508] [SQL] Ignores a test case to cleanup unnecessary testing…
Browse files Browse the repository at this point in the history
… output until apache#6882 is merged

Currently [the test case for SPARK-7862] [1] writes 100,000 lines of integer triples to stderr and makes Jenkins build output unnecessarily large and it's hard to debug other build errors. A proper fix is on the way in apache#6882. This PR ignores this test case temporarily until apache#6882 is merged.

[1]: https://github.com/apache/spark/pull/6404/files#diff-1ea02a6fab84e938582f7f87cc4d9ea1R641

Author: Cheng Lian <lian@databricks.com>

Closes apache#6925 from liancheng/spark-8508 and squashes the following commits:

41e5b47 [Cheng Lian] Ignores the test case until apache#6882 is merged
  • Loading branch information
liancheng committed Jun 21, 2015
1 parent 32e3cda commit 83cdfd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ class SQLQuerySuite extends QueryTest {
.queryExecution.toRdd.count())
}

test("test script transform for stderr") {
ignore("test script transform for stderr") {
val data = (1 to 100000).map { i => (i, i, i) }
data.toDF("d1", "d2", "d3").registerTempTable("script_trans")
assert(0 ===
Expand Down

0 comments on commit 83cdfd8

Please sign in to comment.