summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-05-31 00:11:32 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-05-31 00:13:02 +0200
commitf519ab51e64e03e62a876167e4ce61e601f56981 (patch)
tree0955a76f25169a76884366f439ffce33bbe21d8e
parent1da921bace5172b5db9a2c8746263e6beaa27e1c (diff)
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.
-rw-r--r--testsuite.py10
1 files 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