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 caaeceb commit 9db592aCopy full SHA for 9db592a
compiler/test/dotty/tools/dotc/CompilationTests.scala
@@ -340,10 +340,12 @@ class CompilationTests extends ParallelTesting {
340
linkCustomLibTest
341
}.keepOutput.checkRuns()
342
343
- classFileChecks(linkStramanDir, "linkStrawmanTest")
344
- classFileChecks(linkCustomLibDir, "linkCustomLibTest")
345
-
346
- (libraries + tests).delete()
+ try {
+ classFileChecks(linkStramanDir, "linkStrawmanTest")
+ classFileChecks(linkCustomLibDir, "linkCustomLibTest")
+ } finally {
347
+ (libraries + tests).delete()
348
+ }
349
}
350
351
/** Add a `z` so that they run last. TODO: Only run them selectively? */
0 commit comments