File tree 1 file changed +0
-5
lines changed
compiler/test/dotty/tools/vulpix 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 =>
226
226
/** Total amount of test sources being compiled by this test */
227
227
val sourceCount = filteredSources.length
228
228
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
-
233
229
private [this ] var _testSourcesCompleted = 0
234
230
private def testSourcesCompleted : Int = _testSourcesCompleted
235
231
236
232
/** Complete the current compilation with the amount of errors encountered */
237
233
protected final def registerCompletion (errors : Int ) = synchronized {
238
234
_testSourcesCompleted += 1
239
- _errorCount += errors
240
235
}
241
236
242
237
sealed trait Failure
You can’t perform that action at this time.
0 commit comments