diff --git a/compiler/test/dotty/tools/vulpix/ParallelTesting.scala b/compiler/test/dotty/tools/vulpix/ParallelTesting.scala index 87d5ab101021..fbd025b36b1c 100644 --- a/compiler/test/dotty/tools/vulpix/ParallelTesting.scala +++ b/compiler/test/dotty/tools/vulpix/ParallelTesting.scala @@ -481,7 +481,14 @@ trait ParallelTesting extends RunnerOrchestration { self => throw new TimeoutException("Compiling targets timed out") } - eventualResults.foreach(_.get) + eventualResults.foreach { x => + try x.get() + catch { + case ex: Exception => + System.err.println(ex.getMessage) + ex.printStackTrace() + } + } if (logProgress) { timer.cancel()