summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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