summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2012-12-13 13:42:59 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2012-12-13 13:42:59 +0100
commit6e444f548b88313609c655df14bb1c72c3e98dc8 (patch)
treea44eb5313668ebba2540fd93c4a1b4d59d99d15e /tests
parent83f01afab164c434df9d5c4e217275040370c55e (diff)
Verify assignability of string/int/hex with m visibility.
Diffstat (limited to 'tests')
-rw-r--r--tests/Kvisibility16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/Kvisibility b/tests/Kvisibility
index 5521863..11e15ad 100644
--- a/tests/Kvisibility
+++ b/tests/Kvisibility
@@ -259,3 +259,19 @@ comment "double-nested m comment"
depends on y
endmenu
endif
+
+# Used to verify that string/int/hex symbols with m visibility accept a user
+# value
+
+if m
+
+config STRING_m
+ string "string"
+
+config INT_m
+ int "int"
+
+config HEX_m
+ hex "hex"
+
+endif