We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f51180 commit bf99300Copy full SHA for bf99300
compiler/test/dotty/tools/vulpix/ParallelTesting.scala
@@ -1008,11 +1008,11 @@ trait ParallelTesting extends RunnerOrchestration { self =>
1008
1009
/** Extract `Failure` set and render from `Test` */
1010
private[this] def reasonsForFailure(test: Test): String = {
1011
- val errors =
+ val failureReport =
1012
if (test.failureCount == 0) ""
1013
- else s"\n - encountered ${test.failureCount} error(s)"
+ else s"\n - encountered ${test.failureCount} test failures(s)"
1014
1015
- errors + test.failureReasons.collect {
+ failureReport + test.failureReasons.collect {
1016
case test.TimeoutFailure(title) =>
1017
s" - test '$title' timed out"
1018
case test.JavaCompilationFailure(msg) =>
0 commit comments