@@ -1307,17 +1307,17 @@ trait ParallelTesting extends RunnerOrchestration { self =>
13071307 }
13081308
13091309 class TastyCompilationTest (step1 : CompilationTest , step2 : CompilationTest , step3 : CompilationTest ,
1310- recompilationBlacklisted : FileFilter , decompilationDir : String , shouldDelete : Boolean )(implicit testGroup : TestGroup ) {
1310+ recompilationFilter : FileFilter , decompilationDir : String , shouldDelete : Boolean )(implicit testGroup : TestGroup ) {
13111311
13121312 def keepOutput : TastyCompilationTest =
1313- new TastyCompilationTest (step1, step2, step3, recompilationBlacklisted , decompilationDir, shouldDelete)
1313+ new TastyCompilationTest (step1, step2, step3, recompilationFilter , decompilationDir, shouldDelete)
13141314
13151315 def checkCompile ()(implicit summaryReport : SummaryReporting ): this .type = {
13161316 step1.checkCompile() // Compile all files to generate the class files with tasty
13171317 step2.checkCompile() // Compile from tasty
13181318 step3.checkCompile() // Decompile from tasty
13191319
1320- val step4 = compileFilesInDir(decompilationDir, defaultOptions, recompilationBlacklisted ).keepOutput
1320+ val step4 = compileFilesInDir(decompilationDir, defaultOptions, recompilationFilter ).keepOutput
13211321 step4.checkCompile() // Recompile decompiled code
13221322
13231323 if (shouldDelete)
@@ -1331,7 +1331,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
13311331 step2.checkRuns() // Compile from tasty
13321332 step3.checkCompile() // Decompile from tasty
13331333
1334- val step4 = compileFilesInDir(decompilationDir, defaultOptions, recompilationBlacklisted ).keepOutput
1334+ val step4 = compileFilesInDir(decompilationDir, defaultOptions, recompilationFilter ).keepOutput
13351335 step4.checkRuns() // Recompile decompiled code
13361336
13371337 if (shouldDelete)
0 commit comments