From a8e18669390fb852a55c443f71968af92f7efd6d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 25 Dec 2017 10:43:31 -0500 Subject: Run tests in sorted order --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript') 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) -- cgit v1.2.1