From 9062c4ab0d7d5c40eef4859c976bb89ded2384d9 Mon Sep 17 00:00:00 2001 From: liu fengyun Date: Thu, 26 Oct 2017 14:16:38 +0200 Subject: [PATCH] set bench output to be stdout without prefix The scripts have a hard time with prefixes like "[info]" which has brackets in the string. --- project/Build.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/project/Build.scala b/project/Build.scala index 3ee7eba76bfe..45405a1cf0d2 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -239,6 +239,7 @@ object Build { ) lazy val commonBenchmarkSettings = Seq( + outputStrategy := Some(StdoutOutput), mainClass in (Jmh, run) := Some("dotty.tools.benchmarks.Bench"), // custom main for jmh:run javaOptions += "-DBENCH_CLASS_PATH=" + Attributed.data((fullClasspath in Compile).value).mkString("", ":", "") )