test: Fix off-by-one reporting of test number

This commit is contained in:
Tom Henderson
2025-08-05 14:51:38 -07:00
parent f9a293fc15
commit 3ec58a20d1

View File

@@ -1994,7 +1994,7 @@ def run_tests():
status = "CRASH"
status_print = colors.PINK + status + colors.NORMAL
print("[%d/%d] %s" % (i, total_tests, status_print), end="")
print("[%d/%d] %s" % (i + 1, total_tests, status_print), end="")
if args.duration or args.constrain == "performance":
print(" (%.3f)" % job.elapsed_time, end="")