From 7e23a24829e0fef668acca2bddacbffdd63a1df6 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Tue, 28 Apr 2026 04:49:10 +0000 Subject: [PATCH] Update test_duration in parallel testsuite This makes the "total core time" statistic correct on CI. --- test/parallel_testsuite.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parallel_testsuite.py b/test/parallel_testsuite.py index 9363dd5152b68..fb076d9d1ee2e 100644 --- a/test/parallel_testsuite.py +++ b/test/parallel_testsuite.py @@ -72,6 +72,7 @@ def run_test(args): result._mirrorOutput = False finally: result.elapsed = time.perf_counter() - start_time + result.test_duration = result.elapsed # Before attempting to delete the tmp dir make sure the current # working directory is not within it.