summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-01-28 06:20:01 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-01-28 06:20:12 +0100
commit416083ad78ea17d765a993d87c1a46325b908dc5 (patch)
tree44abcb395f62a716c2392d80d12e499821b01746 /testsuite.py
parentf05e7e6d61be5cacdc1896512c0bab2c422095eb (diff)
Flag constant symbols where they're not allowed
Might break U-Boot if they ever upgrade Kconfiglib, because they have a 'select y' in there (which the C tools don't flag since they only look for quotes), but it's a one-line fix.
Diffstat (limited to 'testsuite.py')
-rw-r--r--testsuite.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/testsuite.py b/testsuite.py
index 6663f32..a250c6e 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -1694,13 +1694,6 @@ g
verify_is_normal_choice_symbol("WS9")
- print("Testing compatibility with weird selects/implies")
-
- # Check that Kconfiglib doesn't crash for stuff like 'select n' (seen in
- # U-Boot). These probably originate from misunderstandings of how Kconfig
- # works.
- Kconfig("Kconfiglib/tests/Kwtf")
-
print("\nAll selftests passed\n" if all_passed else
"\nSome selftests failed\n")