Add a set of tests to check the behaviour of test arguments and the ut command. This includes failure cases, where the wrong type or a non-existent argument is requested. Co-developed-by: Claude <noreply@anthropic.com> Signed-off-by: Simon Glass <simon.glass@canonical.com>
20 lines
517 B
Makefile
20 lines
517 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
obj-$(CONFIG_AUTOBOOT) += test_autoboot.o
|
|
|
|
ifneq ($(CONFIG_$(PHASE_)BLOBLIST),)
|
|
ifdef CONFIG_BLOBLIST_FIXED
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += bloblist.o
|
|
endif
|
|
endif
|
|
|
|
obj-$(CONFIG_BOOTSTAGE) += bootstage.o
|
|
|
|
obj-$(CONFIG_CONSOLE_PAGER) += console.o
|
|
obj-$(CONFIG_CYCLIC) += cyclic.o
|
|
obj-$(CONFIG_EVENT_DYNAMIC) += event.o
|
|
obj-y += cread.o
|
|
obj-y += malloc.o
|
|
obj-$(CONFIG_CONSOLE_PAGER) += pager.o
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += print.o
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += test_args.o
|