summaryrefslogtreecommitdiffstatshomepage
path: root/tests/run-bench-tests
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-05-01 10:34:18 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-05-01 10:35:24 +0300
commitdf06e3417594e3753f8213151e959fd84e3ed175 (patch)
tree686d2a154ab12a2d6cd9fbb55ec8597d24240bbb /tests/run-bench-tests
parent83e99f88cb3e6d7bf7a22263e9232a14b69c72bb (diff)
downloadmicropython-df06e3417594e3753f8213151e959fd84e3ed175.tar.gz
micropython-df06e3417594e3753f8213151e959fd84e3ed175.zip
tests/run-bench-tests: Process tests in alphabetical order.
Diffstat (limited to 'tests/run-bench-tests')
-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 62f0833f41..1e5e7804be 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: