Skip to content

Commit 8a5b198

Browse files
Merge pull request #8556 from dotty-staging/fix-bench
Suppress jmh file report
2 parents 412205c + 94bedb5 commit 8a5b198

File tree

1 file changed

+1
-2
lines changed
  • bench-run/src/main/scala/dotty/tools/benchmarks

1 file changed

+1
-2
lines changed

bench-run/src/main/scala/dotty/tools/benchmarks/Main.scala

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,14 @@ object Bench {
4242
.measurementTime(TimeValue.milliseconds(500))
4343
.forks(forks)
4444
.include(args1(0))
45-
.resultFormat(ResultFormatType.CSV)
4645

4746
if (args1.length > 1 && args1(1) != "--") {
4847
for ((param, values) <- paramsFromFile("inputs/" ++ args1(1)))
4948
builder = builder.param(param, values: _*)
5049
}
5150

5251
if (args1.length > 2) {
53-
builder = builder.result(args1(2))
52+
builder = builder.resultFormat(ResultFormatType.CSV).result(args1(2))
5453
}
5554

5655
val runner = new Runner(builder.build)

0 commit comments

Comments
 (0)