mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 19:34:35 +00:00
test: inconsistent bootm tests
Excluding ut bootm in test/cmd_ut.c but compiling test/bootm.c results in
failure of the Python test invoking the C unit tests as observed on
sipeed_riscv_smode_defconfig:
FAILED test/py/tests/test_ut.py::test_ut[ut_bootm_nop]
FAILED test/py/tests/test_ut.py::test_ut[ut_bootm_nospace]
FAILED test/py/tests/test_ut.py::test_ut[ut_bootm_silent]
FAILED test/py/tests/test_ut.py::test_ut[ut_bootm_silent_var]
FAILED test/py/tests/test_ut.py::test_ut[ut_bootm_subst]
FAILED test/py/tests/test_ut.py::test_ut[ut_bootm_subst_both]
FAILED test/py/tests/test_ut.py::test_ut[ut_bootm_subst_var]
Only compile test/bootm.c on the sandbox.
Fixes: f158ba15ee
("bootm: Add tests for fixup_silent_linux()")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ea5641ec22
commit
fe158657a5
1 changed files with 1 additions and 1 deletions
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
ifneq ($(CONFIG_$(SPL_)BLOBLIST),)
|
ifneq ($(CONFIG_$(SPL_)BLOBLIST),)
|
||||||
obj-$(CONFIG_$(SPL_)CMDLINE) += bloblist.o
|
obj-$(CONFIG_$(SPL_)CMDLINE) += bloblist.o
|
||||||
endif
|
|
||||||
obj-$(CONFIG_$(SPL_)CMDLINE) += bootm.o
|
obj-$(CONFIG_$(SPL_)CMDLINE) += bootm.o
|
||||||
|
endif
|
||||||
obj-$(CONFIG_$(SPL_)CMDLINE) += cmd/
|
obj-$(CONFIG_$(SPL_)CMDLINE) += cmd/
|
||||||
obj-$(CONFIG_$(SPL_)CMDLINE) += cmd_ut.o
|
obj-$(CONFIG_$(SPL_)CMDLINE) += cmd_ut.o
|
||||||
obj-$(CONFIG_$(SPL_)CMDLINE) += command_ut.o
|
obj-$(CONFIG_$(SPL_)CMDLINE) += command_ut.o
|
||||||
|
|
Loading…
Add table
Reference in a new issue