@@ -1307,17 +1307,17 @@ trait ParallelTesting extends RunnerOrchestration { self =>
1307
1307
}
1308
1308
1309
1309
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 ) {
1311
1311
1312
1312
def keepOutput : TastyCompilationTest =
1313
- new TastyCompilationTest (step1, step2, step3, recompilationBlacklisted , decompilationDir, shouldDelete)
1313
+ new TastyCompilationTest (step1, step2, step3, recompilationFilter , decompilationDir, shouldDelete)
1314
1314
1315
1315
def checkCompile ()(implicit summaryReport : SummaryReporting ): this .type = {
1316
1316
step1.checkCompile() // Compile all files to generate the class files with tasty
1317
1317
step2.checkCompile() // Compile from tasty
1318
1318
step3.checkCompile() // Decompile from tasty
1319
1319
1320
- val step4 = compileFilesInDir(decompilationDir, defaultOptions, recompilationBlacklisted ).keepOutput
1320
+ val step4 = compileFilesInDir(decompilationDir, defaultOptions, recompilationFilter ).keepOutput
1321
1321
step4.checkCompile() // Recompile decompiled code
1322
1322
1323
1323
if (shouldDelete)
@@ -1331,7 +1331,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
1331
1331
step2.checkRuns() // Compile from tasty
1332
1332
step3.checkCompile() // Decompile from tasty
1333
1333
1334
- val step4 = compileFilesInDir(decompilationDir, defaultOptions, recompilationBlacklisted ).keepOutput
1334
+ val step4 = compileFilesInDir(decompilationDir, defaultOptions, recompilationFilter ).keepOutput
1335
1335
step4.checkRuns() // Recompile decompiled code
1336
1336
1337
1337
if (shouldDelete)
0 commit comments