summaryrefslogtreecommitdiff
path: root/tests/Kref
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-11-12 10:54:30 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2017-11-12 11:07:09 +0100
commitf74acbcf05512c01168652ad90d2665a04938a31 (patch)
tree507394414f0ba8ee80d498dc4b15e67273db3688 /tests/Kref
parentbb81705d4a1829e671124b05a9caffa98f282ba2 (diff)
Remove unused test files
Some were for now-removed APIs, others tested things that are tested differently now.
Diffstat (limited to 'tests/Kref')
-rw-r--r--tests/Kref59
1 files changed, 0 insertions, 59 deletions
diff --git a/tests/Kref b/tests/Kref
deleted file mode 100644
index b538b15..0000000
--- a/tests/Kref
+++ /dev/null
@@ -1,59 +0,0 @@
-# For testing get_referenced_symbols(), get_selected_symbols(), etc.
-
-config NO_REF
- bool
-
-config ONE_REF
- def_bool A
-
-menu "menu 1"
- depends on MENU_REF_1 && MENU_REF_2
-
-if IF_REF_1 && IF_REF_2
-
-config MANY_REF
- int "BAR" if A && B
- default C if D
- range E F if !G
- depends on H
- select I if J = K || L != M
- select N if (A || !(B && (C = O)))
- imply P if Q = R || S != T
- imply U if (A || !(B && (C = V)))
- default A if A < W || X < A || A <= Y || A > Z || A >= AA
-endif
-
-endmenu
-
-if MENU_REF_1
-if MENU_REF_1 = MENU_REF_2
-
-menu "menu 2"
- depends on NO_REF || MENU_REF_3
-endmenu
-endif
-endif
-
-if CHOICE_REF_1
-if CHOICE_REF_2 = CHOICE_REF_3
-choice
- tristate "choice" if CHOICE_REF_4 || CHOICE_REF_5
- depends on !CHOICE_REF_6
-
-config A
- bool "A"
-
-config B
- bool "B"
-
-endchoice
-endif
-endif
-
-if COMMENT_REF_1
-if !COMMENT_REF_2
-comment "comment"
- depends on COMMENT_REF_3 != COMMENT_REF_4
- depends on COMMENT_REF_5
-endif
-endif