blob: a52766b77d49853967154deffab58c19599178f4 [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
Sean Anderson6c5d0d92023-10-14 16:48:01 -040017 depends on SPL_BLK_FS
Sean Anderson59b36332023-10-14 16:48:00 -040018 depends on SPL_FS_FAT
19 depends on SPL_FS_EXT4
20 depends on SPL_MMC_WRITE
21 default y
22 help
Sean Anderson6c5d0d92023-10-14 16:48:01 -040023 Test filesystems and the various load methods which use them.
Sean Anderson59b36332023-10-14 16:48:00 -040024
Sean Andersonc56468a62023-10-14 16:47:57 -040025config SPL_UT_LOAD_OS
26 bool "Test loading from the host OS"
27 depends on SANDBOX && SPL_LOAD_FIT
28 default y
29 help
30 Smoke test to ensure that loading U-boot works in sandbox.
31
32endif