File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
compiler/test/dotty/tools/vulpix Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -226,17 +226,12 @@ trait ParallelTesting extends RunnerOrchestration { self =>
226226 /** Total amount of test sources being compiled by this test */
227227 val sourceCount = filteredSources.length
228228
229- private [this ] var _errorCount = 0
230- /** Number of (expected or unexpected) compiler errors. Unlikely to be what you want, use `failureCount` instead. */
231- private [this ] def errorCount : Int = _errorCount
232-
233229 private [this ] var _testSourcesCompleted = 0
234230 private def testSourcesCompleted : Int = _testSourcesCompleted
235231
236232 /** Complete the current compilation with the amount of errors encountered */
237233 protected final def registerCompletion (errors : Int ) = synchronized {
238234 _testSourcesCompleted += 1
239- _errorCount += errors
240235 }
241236
242237 sealed trait Failure
You can’t perform that action at this time.
0 commit comments