mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
fb1451bec2
Add a set of combined tests for the bootdev, bootflow and bootmeth commands, along with associated functionality. Expand the sandbox console-recording limit so that these can work. These tests rely on a filesystem script which is not yet added to the Python tests. It is included here as a shell script. Signed-off-by: Simon Glass <sjg@chromium.org>
30 lines
810 B
Makefile
30 lines
810 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2012 The Chromium Authors
|
|
|
|
obj-y += test-main.o
|
|
ifdef CONFIG_SPL_LOAD_FIT
|
|
obj-$(CONFIG_SANDBOX) += image/
|
|
endif
|
|
|
|
ifneq ($(CONFIG_$(SPL_)BLOBLIST),)
|
|
obj-$(CONFIG_$(SPL_)CMDLINE) += bloblist.o
|
|
obj-$(CONFIG_$(SPL_)CMDLINE) += bootm.o
|
|
endif
|
|
obj-$(CONFIG_$(SPL_)CMDLINE) += cmd/
|
|
obj-$(CONFIG_$(SPL_)CMDLINE) += cmd_ut.o
|
|
obj-$(CONFIG_$(SPL_)CMDLINE) += command_ut.o
|
|
obj-$(CONFIG_$(SPL_)UT_COMPRESSION) += compression.o
|
|
obj-y += dm/
|
|
obj-$(CONFIG_$(SPL_)CMDLINE) += print_ut.o
|
|
obj-$(CONFIG_$(SPL_)CMDLINE) += str_ut.o
|
|
obj-$(CONFIG_UT_TIME) += time_ut.o
|
|
obj-y += ut.o
|
|
|
|
ifeq ($(CONFIG_SPL_BUILD),)
|
|
obj-$(CONFIG_UNIT_TEST) += boot/
|
|
obj-$(CONFIG_UNIT_TEST) += common/
|
|
obj-$(CONFIG_UNIT_TEST) += lib/
|
|
obj-y += log/
|
|
obj-$(CONFIG_$(SPL_)UT_UNICODE) += unicode_ut.o
|
|
endif
|