blob: 70ffe0ff27639e226db64f7416d33daa0cb12afd [file] [log] [blame]
Sean Andersonc56468a62023-10-14 16:47:57 -04001# SPDX-License-Identifier: GPL-2.0+
2# Copyright (C) 2023 Sean Anderson <seanga2@gmail.com>
3
4config SPL_UT_LOAD
5 bool "Unit tests for SPL load methods"
6 depends on SPL_UNIT_TEST
7 default y if SANDBOX
8 help
9 Test various SPL load methods.
10
11if SPL_UT_LOAD
12
13config SPL_UT_LOAD_OS
14 bool "Test loading from the host OS"
15 depends on SANDBOX && SPL_LOAD_FIT
16 default y
17 help
18 Smoke test to ensure that loading U-boot works in sandbox.
19
20endif