Home
last modified time | relevance | path

Searched refs:find_in_config (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/tests/boot/with_mcumgr/pytest/
Dtest_upgrade.py11 from twister_harness.helpers.utils import find_in_config, match_lines, match_no_lines
21 origin_key_file = find_in_config(
37 if find_in_config(sysbuild_config, 'SB_CONFIG_MCUBOOT_MODE_SWAP_USING_OFFSET'):
116 origin_version = find_in_config(
179 origin_key_file = find_in_config(
Dtest_downgrade_prevention.py11 from twister_harness.helpers.utils import find_in_config, match_lines, match_no_lines
30 origin_version = find_in_config(
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/
Dfixtures.py17 from twister_harness.helpers.utils import find_in_config
72 if prompt := find_in_config(Path(dut.device_config.app_build_dir) / 'zephyr' / '.config',
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/
Dutils.py15 def find_in_config(config_file: Path | str, config_key: str) -> str: function