aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 10:43:31 -0500
committerDavid Robillard <d@drobilla.net>2018-02-04 09:29:05 +0100
commita8e18669390fb852a55c443f71968af92f7efd6d (patch)
tree78377f500f0741192ee71002dd3537cb9553ab00
parent4bb5e376544d66c96e6753f1bee133feb52824eb (diff)
downloadserd-a8e18669390fb852a55c443f71968af92f7efd6d.tar.gz
serd-a8e18669390fb852a55c443f71968af92f7efd6d.tar.bz2
serd-a8e18669390fb852a55c443f71968af92f7efd6d.zip
Run tests in sorted order
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 1ab56bda..ff8f1a46 100644
--- a/wscript
+++ b/wscript
@@ -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)