Skip to content

Commit c974906

Browse files
kiszkzsxwing
authored andcommitted
[SPARK-20907][TEST] Use testQuietly for test suites that generate long log output
## What changes were proposed in this pull request? Supress console output by using `testQuietly` in test suites ## How was this patch tested? Tested by `"SPARK-19372: Filter can be executed w/o generated code due to JVM code size limit"` in `DataFrameSuite` Author: Kazuaki Ishizaki <ishizaki@jp.ibm.com> Closes #18135 from kiszk/SPARK-20907.
1 parent ef9fd92 commit c974906

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sql/core/src/test/scala/org/apache/spark/sql/DataFrameSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1845,7 +1845,7 @@ class DataFrameSuite extends QueryTest with SharedSQLContext {
18451845
.count
18461846
}
18471847

1848-
test("SPARK-19372: Filter can be executed w/o generated code due to JVM code size limit") {
1848+
testQuietly("SPARK-19372: Filter can be executed w/o generated code due to JVM code size limit") {
18491849
val N = 400
18501850
val rows = Seq(Row.fromSeq(Seq.fill(N)("string")))
18511851
val schema = StructType(Seq.tabulate(N)(i => StructField(s"_c$i", StringType)))

0 commit comments

Comments
 (0)