summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite.py')
-rw-r--r--testsuite.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/testsuite.py b/testsuite.py
index 0cc472e..a610c4b 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -2508,9 +2508,12 @@ def run_compatibility_tests():
def all_arch_srcarch():
for srcarch in os.listdir("arch"):
- # These are currently broken with the C tools on linux-next as well.
- # Perhaps they require cross-compilers to be installed.
- if srcarch in ("arc", "h8300"):
+ # arc and h8300 are currently broken with the C tools on linux-next as
+ # well. Perhaps they require cross-compilers to be installed.
+ #
+ # User-mode Linux has an unorthodox Kconfig setup that would require a
+ # different testing setup. Skip it too.
+ if srcarch in ("arc", "h8300", "um"):
continue
if os.path.exists(os.path.join("arch", srcarch, "Kconfig")):