blob: 963c86cc290b9030c0a47b968ad73c30c8a940f1 [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
Sean Anderson59b36332023-10-14 16:48:00 -040013config SPL_UT_LOAD_FS
14 bool "Unit tests for filesystems"
15 depends on SANDBOX && SPL_OF_REAL
16 depends on FS_LOADER
17 depends on SPL_FS_FAT
18 depends on SPL_FS_EXT4
19 depends on SPL_MMC_WRITE
20 default y
21 help
22 Test filesystems in SPL.
23
Sean Andersonc56468a62023-10-14 16:47:57 -040024config SPL_UT_LOAD_OS
25 bool "Test loading from the host OS"
26 depends on SANDBOX && SPL_LOAD_FIT
27 default y
28 help
29 Smoke test to ensure that loading U-boot works in sandbox.
30
31endif