@@ -1610,7 +1610,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
1610
1610
* '-Ywith-best-effort-tasty' to test the TastyReader for Best Effort TASTy.
1611
1611
*/
1612
1612
def compileBestEffortTastyInDir (f : String , flags : TestFlags , picklingFilter : FileFilter , unpicklingFilter : FileFilter )(
1613
- implicit testGroup : TestGroup ): BestEffortCompilationTest = {
1613
+ implicit testGroup : TestGroup ): BestEffortOptionsTest = {
1614
1614
val bestEffortFlag = " -Ybest-effort"
1615
1615
val semanticDbFlag = " -Xsemanticdb"
1616
1616
assert(! flags.options.contains(bestEffortFlag), " Best effort compilation flag should not be added manually" )
@@ -1687,7 +1687,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
1687
1687
new CompilationFromBestEffortTasty (testGroup.name, f, flags, bestEffortDir)
1688
1688
}
1689
1689
1690
- new BestEffortCompilationTest (
1690
+ new BestEffortOptionsTest (
1691
1691
new CompilationTest (bestEffortTargets).keepOutput,
1692
1692
new CompilationTest (fromTastyTargets).keepOutput,
1693
1693
bestEffortDirs,
@@ -1735,7 +1735,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
1735
1735
(step1Compilation, step2Compilation, bestEffortDir)
1736
1736
}.unzip3
1737
1737
1738
- BestEffortCompilationTest (
1738
+ BestEffortOptionsTest (
1739
1739
new CompilationTest (step1Targets).keepOutput,
1740
1740
new CompilationTest (step2Targets).keepOutput,
1741
1741
bestEffortDirs,
@@ -1770,7 +1770,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
1770
1770
}
1771
1771
}
1772
1772
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 ) {
1774
1774
1775
1775
def checkNoCrash ()(implicit summaryReport : SummaryReporting ): this .type = {
1776
1776
step1.checkNoBestEffortError() // Compile all files to generate the class files with best effort tasty
0 commit comments