From: Heinrich Schuchardt Date: Thu, 5 Nov 2020 00:29:06 +0000 (+0100) Subject: test: test/lib/test_print.c depends on CONSOLE_RECORD X-Git-Tag: baikal/mips/sdk5.9~34^2^2~242^2~33 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=e34ef11c520ed348b812c2139e9ab3284b114e57;p=uboot.git test: test/lib/test_print.c depends on CONSOLE_RECORD The tests in test/lib/test_print.c fail without CONFIG_CONSOLE_RECORD=y. Add a build dependency. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/test/lib/Makefile b/test/lib/Makefile index 98a9abf40e..97c11e35a8 100644 --- a/test/lib/Makefile +++ b/test/lib/Makefile @@ -7,7 +7,7 @@ obj-$(CONFIG_EFI_LOADER) += efi_device_path.o obj-$(CONFIG_EFI_SECURE_BOOT) += efi_image_region.o obj-y += hexdump.o obj-y += lmb.o -obj-y += test_print.o +obj-$(CONFIG_CONSOLE_RECORD) += test_print.o obj-$(CONFIG_SSCANF) += sscanf.o obj-y += string.o obj-$(CONFIG_ERRNO_STR) += test_errno_str.o