1# Copyright 2024 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config TEST_FOO_VAL
5	int "Test value"
6	default 0
7	help
8	  This option's value should be overridden by the 'foo' snippet config overlay.
9
10config EXPECTED_SB_TEST_FOO_VAL
11	int "Expected sysbuild test value"
12	default 999999
13	help
14	  Expected sysbuild value for the test.
15
16config EXPECTED_APP_TEST_FOO_VAL
17	int "Expected application test value"
18	default 999999
19	help
20	  Expected application value for the test.
21
22source "${ZEPHYR_BASE}/share/sysbuild/Kconfig"
23