File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
compiler/test/dotty/tools/vulpix Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -295,16 +295,17 @@ trait ParallelTesting extends RunnerOrchestration { self =>
295
295
" [" + (" =" * (math.max(progress - 1 , 0 ))) +
296
296
(if (progress > 0 ) " >" else " " ) +
297
297
(" " * (39 - progress)) +
298
- s " ] completed ( $tCompiled/ $sourceCount, $errorCount failed, ${timestamp}s)) \r "
298
+ s " ] completed ( $tCompiled/ $sourceCount, $errorCount failed, ${timestamp}s) \r "
299
299
)
300
300
301
301
Thread .sleep(100 )
302
302
tCompiled = testSourcesCompleted
303
303
}
304
+
305
+ val timestamp = (System .currentTimeMillis - start) / 1000
304
306
// println, otherwise no newline and cursor at start of line
305
307
realStdout.println(
306
- s " [=======================================] completed ( $sourceCount/ $sourceCount, " +
307
- s " ${(System .currentTimeMillis - start) / 1000 }s) "
308
+ s " [=======================================] completed ( $sourceCount/ $sourceCount, $errorCount failed, ${timestamp}s) "
308
309
)
309
310
}
310
311
You can’t perform that action at this time.
0 commit comments