summaryrefslogtreecommitdiff
path: root/tests
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 /tests
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 'tests')
-rw-r--r--tests/Kwtf18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/Kwtf b/tests/Kwtf
deleted file mode 100644
index 85ae57e..0000000
--- a/tests/Kwtf
+++ /dev/null
@@ -1,18 +0,0 @@
-config A
- bool
- select n
- select m
- select y
- select UNAME_RELEASE
- select "n"
- select "m"
- select "y"
- select "UNAME_RELEASE"
- imply n
- imply m
- imply y
- imply UNAME_RELEASE
- imply "n"
- imply "m"
- imply "y"
- imply "UNAME_RELEASE"