CONFIGURATION!
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
choice
|
||||
prompt "This is always invisible"
|
||||
depends on n
|
||||
|
||||
config DUMMY
|
||||
bool "DUMMY"
|
||||
|
||||
endchoice
|
||||
|
||||
choice
|
||||
prompt "Choose A or B"
|
||||
|
||||
config A
|
||||
bool "A"
|
||||
|
||||
config B
|
||||
bool "B"
|
||||
|
||||
endchoice
|
||||
|
||||
config FOO
|
||||
bool "FOO"
|
||||
depends on A
|
||||
|
||||
choice
|
||||
prompt "Choose X"
|
||||
depends on FOO
|
||||
|
||||
config X
|
||||
bool "X"
|
||||
|
||||
endchoice
|
||||
@@ -0,0 +1,18 @@
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
"""
|
||||
Randomize choices with correct dependencies
|
||||
|
||||
When shuffling a choice may potentially disrupt certain dependencies, symbol
|
||||
values must be recalculated.
|
||||
|
||||
Related Linux commits:
|
||||
- c8fb7d7e48d11520ad24808cfce7afb7b9c9f798
|
||||
"""
|
||||
|
||||
|
||||
def test(conf):
|
||||
for i in range(20):
|
||||
assert conf.randconfig(seed=i) == 0
|
||||
assert (conf.config_matches('expected_config0') or
|
||||
conf.config_matches('expected_config1') or
|
||||
conf.config_matches('expected_config2'))
|
||||
@@ -0,0 +1,8 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Main menu
|
||||
#
|
||||
CONFIG_A=y
|
||||
# CONFIG_B is not set
|
||||
CONFIG_FOO=y
|
||||
CONFIG_X=y
|
||||
@@ -0,0 +1,7 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Main menu
|
||||
#
|
||||
CONFIG_A=y
|
||||
# CONFIG_B is not set
|
||||
# CONFIG_FOO is not set
|
||||
@@ -0,0 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Main menu
|
||||
#
|
||||
# CONFIG_A is not set
|
||||
CONFIG_B=y
|
||||
Reference in New Issue
Block a user