Skip to content

Commit 3b24064

Browse files
authored
Merge pull request #2942 from gsps/vulpix-report-all-exceptions
Vulpix should catch and report all exceptions during compilation of test cases
2 parents d916343 + 32d3d26 commit 3b24064

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)