Skip to content
Snippets Groups Projects
Commit c9749068 authored by Kazuaki Ishizaki's avatar Kazuaki Ishizaki Committed by Shixiong Zhu
Browse files

[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.
parent ef9fd920
No related branches found
No related tags found
No related merge requests found
......@@ -1845,7 +1845,7 @@ class DataFrameSuite extends QueryTest with SharedSQLContext {
.count
}
test("SPARK-19372: Filter can be executed w/o generated code due to JVM code size limit") {
testQuietly("SPARK-19372: Filter can be executed w/o generated code due to JVM code size limit") {
val N = 400
val rows = Seq(Row.fromSeq(Seq.fill(N)("string")))
val schema = StructType(Seq.tabulate(N)(i => StructField(s"_c$i", StringType)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment