From 60dfac14cb89355ca97cdbde45bea19df8f42a83 Mon Sep 17 00:00:00 2001 From: JungminKim Date: Sun, 23 Jul 2023 12:35:07 +0000 Subject: [PATCH] tests: Change test result statistics condition As it comes with more combinations of compiler and flags, it's better to update the condition to print the test stats. Specifically we want to print it when there are more than 300 test runs or more than 10 kind of tests were run. Fixed: #1770 Signed-off-by: Jungmin Kim --- tests/runtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtest.py b/tests/runtest.py index 28632f6fc..f798ba43b 100755 --- a/tests/runtest.py +++ b/tests/runtest.py @@ -1135,5 +1135,5 @@ class dotdict(dict): sys.stdout.write("\n") sys.stdout.flush() - if shared.total >= 30: + if shared.progress >= 10 or shared.total >= 300: print_test_report(color, shared)