diff options
author | David Robillard <d@drobilla.net> | 2017-12-25 10:43:31 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-02-04 09:29:05 +0100 |
commit | a8e18669390fb852a55c443f71968af92f7efd6d (patch) | |
tree | 78377f500f0741192ee71002dd3537cb9553ab00 | |
parent | 4bb5e376544d66c96e6753f1bee133feb52824eb (diff) | |
download | serd-a8e18669390fb852a55c443f71968af92f7efd6d.tar.gz serd-a8e18669390fb852a55c443f71968af92f7efd6d.tar.bz2 serd-a8e18669390fb852a55c443f71968af92f7efd6d.zip |
Run tests in sorted order
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -354,7 +354,7 @@ def test_suite(ctx, base_uri, testdir, report, isyntax, osyntax, options=''): thru_options_iter = itertools.cycle(thru_options) with autowaf.begin_tests(ctx, APPNAME, str(test_class)): - for (num, test) in enumerate(tests): + for (num, test) in enumerate(sorted(tests)): action_node = model[test][mf + 'action'][0] action = os.path.join('tests', testdir, os.path.basename(action_node)) abs_action = os.path.join(srcdir, action) |