We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 412205c + 94bedb5 commit 8a5b198Copy full SHA for 8a5b198
bench-run/src/main/scala/dotty/tools/benchmarks/Main.scala
@@ -42,15 +42,14 @@ object Bench {
42
.measurementTime(TimeValue.milliseconds(500))
43
.forks(forks)
44
.include(args1(0))
45
- .resultFormat(ResultFormatType.CSV)
46
47
if (args1.length > 1 && args1(1) != "--") {
48
for ((param, values) <- paramsFromFile("inputs/" ++ args1(1)))
49
builder = builder.param(param, values: _*)
50
}
51
52
if (args1.length > 2) {
53
- builder = builder.result(args1(2))
+ builder = builder.resultFormat(ResultFormatType.CSV).result(args1(2))
54
55
56
val runner = new Runner(builder.build)
0 commit comments