summaryrefslogtreecommitdiff
path: root/tests/Kmodifiable
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-10-09 23:05:00 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2017-10-24 19:24:08 +0200
commitdd0e227216e247d2040cdd40bf7397702880cdc4 (patch)
tree4c76ebb2e7555d28214cddecf32ffb424fa1732b /tests/Kmodifiable
parentf64aaf971176305233f16a11911a660fa6f99561 (diff)
Kconfiglib 2 backup
WIP
Diffstat (limited to 'tests/Kmodifiable')
-rw-r--r--tests/Kmodifiable50
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/Kmodifiable b/tests/Kmodifiable
deleted file mode 100644
index 1f9dcc9..0000000
--- a/tests/Kmodifiable
+++ /dev/null
@@ -1,50 +0,0 @@
-config MODULES
- def_bool y
-
-config VISIBLE
- tristate "bool visible"
-
-config NOT_VISIBLE
- tristate
-
-config Y_SELECTOR
- def_tristate y
- select SELECTED_TO_Y
-
-config SELECTED_TO_Y
- tristate "selected to y"
-
-config M_SELECTOR
- def_tristate m
- select TRISTATE_SELECTED_TO_M
- select M_VISIBLE_TRISTATE_SELECTED_TO_M
- select BOOL_SELECTED_TO_M
-
-config TRISTATE_SELECTED_TO_M
- tristate "tristate selected to m"
-
-config M_VISIBLE_TRISTATE_SELECTED_TO_M
- tristate "m-visible tristate selected to m"
- depends on m
-
-# The "m" will get promoted to a "y", so this should still not be modifiable
-config BOOL_SELECTED_TO_M
- bool "bool selected to m"
-
-config VISIBLE_STRING
- string "visible string"
-
-config VISIBLE_INT
- int "visible int"
-
-config VISIBLE_HEX
- hex "visible hex"
-
-config NOT_VISIBLE_STRING
- string
-
-config NOT_VISIBLE_INT
- int "not visible int" if n
-
-config NOT_VISIBLE_HEX
- hex