Skip to content

Commit fdcc7f2

Browse files
committed
Rename recompilationBlacklisted to recompilationFilter
1 parent 8d87b56 commit fdcc7f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/test/dotty/tools/vulpix/ParallelTesting.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)