Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
26 lines
1.1 KiB
Python
26 lines
1.1 KiB
Python
# SPDX-License-Identifier: GPL-2.0
|
|
"""
|
|
Test transitional symbol migration functionality for all Kconfig types.
|
|
|
|
This tests that:
|
|
- OLD_* options in existing .config cause NEW_* options to be set
|
|
- OLD_* options are not written to the new .config file
|
|
- NEW_* options appear in the new .config file with correct values
|
|
- NEW_* options with defaults from transitional symbols are not prompted
|
|
- All Kconfig types work correctly: bool, tristate, string, hex, int
|
|
- User-set NEW values take precedence over conflicting OLD transitional values
|
|
"""
|
|
|
|
def test(conf):
|
|
# Run olddefconfig to process the migration with the initial config
|
|
assert conf.olddefconfig(dot_config='initial_config') == 0
|
|
|
|
# Check that the configuration matches expected output
|
|
assert conf.config_contains('expected_config')
|
|
|
|
# Test oldconfig to ensure symbols with transitional defaults are not prompted
|
|
assert conf.oldconfig(dot_config='initial_config', in_keys='n\n') == 0
|
|
|
|
# Except for when conditional default evaluates to 'no'
|
|
assert conf.stdout_contains('expected_stdout')
|