From b1c24c85794731a78c4847a4849f53307dfebacc Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Thu, 23 Aug 2018 11:25:13 +0200 Subject: Exclude User-mode Linux from testing This "architecture" has an unorthodox Kconfig setup that would require a different testing setup. --- testsuite.py | 9 ++++++--- 1 file 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")): -- cgit v1.2.3