diff options
Diffstat (limited to 'tests/Ktext')
| -rw-r--r-- | tests/Ktext | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/Ktext b/tests/Ktext index 8ee00e0..dd9fd82 100644 --- a/tests/Ktext +++ b/tests/Ktext @@ -1,3 +1,66 @@ +config BASIC + bool + +if !BASIC && !BASIC + +config ADVANCED + tristate "advanced prompt 1" if y || (BASIC && BASIC) + select SELECTED_1 if BASIC && DUMMY + select SELECTED_2 if !(DUMMY || BASIC) + default y if BASIC && !BASIC + default n if BASIC = DUMMY + +config ADVANCED + tristate "advanced prompt 2" + +endif + +config SELECTED_1 +config SELECTED_2 +config SELECTING_1 + select ADVANCED if BASIC +config SELECTING_2 + select ADVANCED if !BASIC + +config INT + int + default 7 + +config HAS_RANGES + int "ranged" + range 1 2 if !DUMMY + range INT INT if DUMMY + range 123 456 + +choice + bool "choice" + +config CHOICE_ITEM_1 + bool "A" +config CHOICE_ITEM_2 + bool "B" +config CHOICE_ITEM_3 + bool "C" + +endchoice + +menu "simple menu" +endmenu + +if !DUMMY +menu "advanced menu" + depends on !BASIC + visible if !DUMMY +endmenu +endif + +comment "simple comment" + +if !DUMMY + comment "advanced comment" + depends on !BASIC +endif + config NO_HELP bool |
