diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-08-23 11:25:13 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-08-23 11:42:49 +0200 |
| commit | b1c24c85794731a78c4847a4849f53307dfebacc (patch) | |
| tree | 3f97c0efa0630404796c984dbf90c894874d155b | |
| parent | 3aca83eaf20f5e278b6d260cb255e6a9385590db (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.py | 9 |
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")): |
