Skip to content

Commit 32d3d26

Browse files
committed
Changed vulpix to catch and report all exceptions during compilation.
1 parent d916343 commit 32d3d26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/test/dotty/tools/vulpix/ParallelTesting.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
324324
if (!isInteractive) realStdout.println(testing)
325325
op
326326
} catch {
327-
case NonFatal(e) => {
327+
case e: Throwable => {
328328
// if an exception is thrown during compilation, the complete test
329329
// run should fail
330330
failTestSource(testSource)

0 commit comments

Comments
 (0)