@@ -1610,7 +1610,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
16101610 * '-Ywith-best-effort-tasty' to test the TastyReader for Best Effort TASTy.
16111611 */
16121612 def compileBestEffortTastyInDir (f : String , flags : TestFlags , picklingFilter : FileFilter , unpicklingFilter : FileFilter )(
1613- implicit testGroup : TestGroup ): BestEffortCompilationTest = {
1613+ implicit testGroup : TestGroup ): BestEffortOptionsTest = {
16141614 val bestEffortFlag = " -Ybest-effort"
16151615 val semanticDbFlag = " -Xsemanticdb"
16161616 assert(! flags.options.contains(bestEffortFlag), " Best effort compilation flag should not be added manually" )
@@ -1687,7 +1687,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
16871687 new CompilationFromBestEffortTasty (testGroup.name, f, flags, bestEffortDir)
16881688 }
16891689
1690- new BestEffortCompilationTest (
1690+ new BestEffortOptionsTest (
16911691 new CompilationTest (bestEffortTargets).keepOutput,
16921692 new CompilationTest (fromTastyTargets).keepOutput,
16931693 bestEffortDirs,
@@ -1735,7 +1735,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
17351735 (step1Compilation, step2Compilation, bestEffortDir)
17361736 }.unzip3
17371737
1738- BestEffortCompilationTest (
1738+ BestEffortOptionsTest (
17391739 new CompilationTest (step1Targets).keepOutput,
17401740 new CompilationTest (step2Targets).keepOutput,
17411741 bestEffortDirs,
@@ -1770,7 +1770,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
17701770 }
17711771 }
17721772
1773- class BestEffortCompilationTest (step1 : CompilationTest , step2 : CompilationTest , bestEffortDirs : List [JFile ], shouldDelete : Boolean )(implicit testGroup : TestGroup ) {
1773+ class BestEffortOptionsTest (step1 : CompilationTest , step2 : CompilationTest , bestEffortDirs : List [JFile ], shouldDelete : Boolean )(implicit testGroup : TestGroup ) {
17741774
17751775 def checkNoCrash ()(implicit summaryReport : SummaryReporting ): this .type = {
17761776 step1.checkNoBestEffortError() // Compile all files to generate the class files with best effort tasty
0 commit comments