Display the current pass number in TestPerformance result summary (helps monitor progress on very long runs)

This commit is contained in:
Sam Harwell 2013-04-30 22:00:35 -05:00
parent 3558151e56
commit cc0d050622
1 changed files with 2 additions and 1 deletions

View File

@ -794,7 +794,8 @@ public class TestPerformance extends BaseTest {
executorService.shutdown();
executorService.awaitTermination(Long.MAX_VALUE, TimeUnit.NANOSECONDS);
System.out.format("Total parse time for %d files (%d KB, %d tokens, checksum 0x%8X): %dms%n",
System.out.format("%d. Total parse time for %d files (%d KB, %d tokens, checksum 0x%8X): %dms%n",
currentPass + 1,
inputCount,
inputSize / 1024,
tokenCount.get(currentPass),