We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fdb94b commit 5f3b57aCopy full SHA for 5f3b57a
compiler/test/dotty/tools/vulpix/ParallelTesting.scala
@@ -600,7 +600,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
600
else runMain(testSource.runClassPath) match {
601
case Success(_) if !checkFile.isDefined || !checkFile.get.exists => // success!
602
case Success(output) => {
603
- val outputLines = output.lines.toArray :+ DiffUtil.EOF
+ val outputLines = output.lines.filterNot(_.startsWith("Picked up _JAVA_OPTIONS")).toArray :+ DiffUtil.EOF
604
val checkLines: Array[String] = Source.fromFile(checkFile.get).getLines().toArray :+ DiffUtil.EOF
605
val sourceTitle = testSource.title
606
0 commit comments