From f519ab51e64e03e62a876167e4ce61e601f56981 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Thu, 31 May 2018 00:11:32 +0200 Subject: Reorder compatibility tests The defconfig tests tend to find any issue quickly, so keep those first. Go alldefconfig -> allnoconfig -> allmodconfig -> allyesconfig after that, and do the sanity checks at the end. --- testsuite.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/testsuite.py b/testsuite.py index 2a8588a..d976c12 100644 --- a/testsuite.py +++ b/testsuite.py @@ -1917,16 +1917,16 @@ def run_compatibility_tests(): print("Running compatibility tests...\n") - test_fns = (test_allmodconfig, - test_alldefconfig, - test_defconfig, + test_fns = (test_defconfig, # Fails for a few defconfigs due to a bug in the C tools. Will # be enabled once patches get in. #test_min_config, - test_sanity, + test_alldefconfig, test_allnoconfig, test_allnoconfig_walk, - test_allyesconfig) + test_allmodconfig, + test_allyesconfig, + test_sanity) for test_fn in test_fns: # The test description is taken from the docstring of the corresponding -- cgit v1.2.3