xref: /linux/scripts/kconfig/tests/err_transitional/Kconfig (revision a5ba183bdeeeedd5f5b683c02561072848258496)
1*f9afce4fSKees Cook# SPDX-License-Identifier: GPL-2.0
2*f9afce4fSKees Cook# Test that transitional symbols cannot have properties other than help
3*f9afce4fSKees Cook
4*f9afce4fSKees Cookconfig BAD_DEFAULT
5*f9afce4fSKees Cook	bool
6*f9afce4fSKees Cook	transitional
7*f9afce4fSKees Cook	default y
8*f9afce4fSKees Cook	help
9*f9afce4fSKees Cook	  This transitional symbol illegally has a default property.
10*f9afce4fSKees Cook
11*f9afce4fSKees Cookconfig BAD_PROMPT
12*f9afce4fSKees Cook	bool
13*f9afce4fSKees Cook	transitional
14*f9afce4fSKees Cook	prompt "Bad prompt"
15*f9afce4fSKees Cook	help
16*f9afce4fSKees Cook	  This transitional symbol illegally has a prompt.
17*f9afce4fSKees Cook
18*f9afce4fSKees Cookconfig BAD_SELECT
19*f9afce4fSKees Cook	bool
20*f9afce4fSKees Cook	transitional
21*f9afce4fSKees Cook	select OTHER_SYMBOL
22*f9afce4fSKees Cook	help
23*f9afce4fSKees Cook	  This transitional symbol illegally has a select.
24*f9afce4fSKees Cook
25*f9afce4fSKees Cookconfig BAD_IMPLY
26*f9afce4fSKees Cook	bool
27*f9afce4fSKees Cook	transitional
28*f9afce4fSKees Cook	imply OTHER_SYMBOL
29*f9afce4fSKees Cook	help
30*f9afce4fSKees Cook	  This transitional symbol illegally has an imply.
31*f9afce4fSKees Cook
32*f9afce4fSKees Cookconfig BAD_DEPENDS
33*f9afce4fSKees Cook	bool
34*f9afce4fSKees Cook	transitional
35*f9afce4fSKees Cook	depends on OTHER_SYMBOL
36*f9afce4fSKees Cook	help
37*f9afce4fSKees Cook	  This transitional symbol illegally has a depends.
38*f9afce4fSKees Cook
39*f9afce4fSKees Cookconfig BAD_RANGE
40*f9afce4fSKees Cook	int
41*f9afce4fSKees Cook	transitional
42*f9afce4fSKees Cook	range 1 10
43*f9afce4fSKees Cook	help
44*f9afce4fSKees Cook	  This transitional symbol illegally has a range.
45*f9afce4fSKees Cook
46*f9afce4fSKees Cookconfig BAD_NO_TYPE
47*f9afce4fSKees Cook	transitional
48*f9afce4fSKees Cook	help
49*f9afce4fSKees Cook	  This transitional symbol illegally has no type specified.
50*f9afce4fSKees Cook
51*f9afce4fSKees Cookconfig OTHER_SYMBOL
52*f9afce4fSKees Cook	bool
53