Sean Anderson | c56468a6 | 2023-10-14 16:47:57 -0400 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
| 2 | # Copyright (C) 2023 Sean Anderson <seanga2@gmail.com> |
| 3 | |
| 4 | config 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 | |
| 11 | if SPL_UT_LOAD |
| 12 | |
| 13 | config 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 | |
| 20 | endif |