aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sokolovsky2016-05-01 10:34:18 +0300
committerPaul Sokolovsky2016-05-01 10:35:24 +0300
commitdf06e3417594e3753f8213151e959fd84e3ed175 (patch)
tree686d2a154ab12a2d6cd9fbb55ec8597d24240bbb
parent83e99f88cb3e6d7bf7a22263e9232a14b69c72bb (diff)
tests/run-bench-tests: Process tests in alphabetical order.
-rwxr-xr-xtests/run-bench-tests2
1 files changed, 1 insertions, 1 deletions
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: