summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-08-23 11:25:13 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-08-23 11:42:49 +0200
commitb1c24c85794731a78c4847a4849f53307dfebacc (patch)
tree3f97c0efa0630404796c984dbf90c894874d155b
parent3aca83eaf20f5e278b6d260cb255e6a9385590db (diff)
Exclude User-mode Linux from testing
This "architecture" has an unorthodox Kconfig setup that would require a different testing setup.
-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")):