diff options
Diffstat (limited to 'tests/Kdirdep')
| -rw-r--r-- | tests/Kdirdep | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/Kdirdep b/tests/Kdirdep new file mode 100644 index 0000000..cbb88b9 --- /dev/null +++ b/tests/Kdirdep @@ -0,0 +1,30 @@ +config NO_DEP_SYM + bool + +config DEP_SYM + bool + depends on A + +config DEP_SYM + depends on B && C + +config DEP_SYM + depends on !D + + +choice NO_DEP_CHOICE + bool "no dep. choice" +endchoice + +choice DEP_CHOICE + bool "dep. choice" + depends on A +endchoice + +choice DEP_CHOICE + depends on B +endchoice + +choice DEP_CHOICE + depends on C +endchoice |
