From 3ec58a20d18846af800096212df14d7b48667ee2 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Tue, 5 Aug 2025 14:51:38 -0700 Subject: [PATCH] test: Fix off-by-one reporting of test number --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 50a988062..1b32cea2c 100755 --- a/test.py +++ b/test.py @@ -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="")