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 75fc802 commit 56987cbCopy full SHA for 56987cb
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
private val (compilerSources, backendSources, backendJvmSources) = {
0 commit comments