@@ -1212,7 +1212,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
12121212 * of betasty files.
12131213 */
12141214 def checkNoBestEffortError ()(implicit summaryReport : SummaryReporting ): this .type = {
1215- val test = new NoBestEffortErrorsTest (targets, times, threadLimit, shouldFail || shouldSuppressOutput ).executeTestSuite()
1215+ val test = new NoBestEffortErrorsTest (targets, times, threadLimit, shouldFail).executeTestSuite()
12161216
12171217 cleanup()
12181218
@@ -1761,7 +1761,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
17611761 val bestEffortDir = new JFile (step1OutDir, s " META-INF ${JFile .separator}best-effort " )
17621762
17631763 val step2Compilation = JointCompilationSource (
1764- testGroup.name, step2SourceFiles, flags.and(withBetastyFlag).and(semanticDbFlag), step2OutDir, fromTasty = WithBestEffortTasty (bestEffortDir)
1764+ testGroup.name, step2SourceFiles, flags.and(bestEffortFlag).and( withBetastyFlag).and(semanticDbFlag), step2OutDir, fromTasty = WithBestEffortTasty (bestEffortDir)
17651765 )
17661766 (step1Compilation, step2Compilation, bestEffortDir)
17671767 }.unzip3
@@ -1770,7 +1770,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
17701770 new CompilationTest (step1Targets).keepOutput,
17711771 new CompilationTest (step2Targets).keepOutput,
17721772 bestEffortDirs,
1773- true
1773+ shouldDelete = true
17741774 )
17751775 }
17761776
@@ -1824,7 +1824,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
18241824
18251825 def noCrashWithCompilingDependencies ()(implicit summaryReport : SummaryReporting ): this .type = {
18261826 step1.checkNoBestEffortError() // Compile all files to generate the class files with best effort tasty
1827- step2.checkCompile () // Compile with best effort tasty
1827+ step2.checkNoBestEffortError () // Compile with best effort tasty
18281828
18291829 this
18301830 }
0 commit comments