From df06e3417594e3753f8213151e959fd84e3ed175 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky <pfalcon@users.sourceforge.net> Date: Sun, 1 May 2016 10:34:18 +0300 Subject: [PATCH] tests/run-bench-tests: Process tests in alphabetical order. --- tests/run-bench-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-bench-tests b/tests/run-bench-tests index 62f0833f4..1e5e7804b 100755 --- a/tests/run-bench-tests +++ b/tests/run-bench-tests @@ -22,7 +22,7 @@ def run_tests(pyb, test_dict): test_count = 0 testcase_count = 0 - for base_test, tests in test_dict.items(): + for base_test, tests in sorted(test_dict.items()): print(base_test + ":") for test_file in tests: -- GitLab