From 6a2d9d1bed1145cbf35a13cb4709d555ff150cef Mon Sep 17 00:00:00 2001 From: "SaiMyGuy (GCI 2019)" <> Date: Sun, 2 Feb 2020 17:50:37 +0530 Subject: [PATCH] test.py: Show progress of tests in numbers --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 184dacf91..13b42c96d 100755 --- a/test.py +++ b/test.py @@ -1744,6 +1744,7 @@ def run_tests(): status = "CRASH" status_print = colors.PINK + status + colors.NORMAL + print("[%d/%d]" % (passed_tests + failed_tests + skipped_tests + crashed_tests, total_tests), end=' ') if options.duration or options.constrain == "performance": print("%s (%.3f): %s %s" % (status_print, job.elapsed_time, kind, job.display_name)) else: