aboutsummaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2020-11-05 01:29:06 +0100
committerTom Rini <trini@konsulko.com>2021-01-16 11:58:49 -0500
commitaf033ec8b4ebe28dd5e45b19f3abe213b1f4def3 (patch)
tree984cc08e841133f75f2363a049fb6ba9eb351d86 /test/lib
parent14ea1b3635b4af8d9e283e3671f7ee872d50b859 (diff)
downloadu-boot-af033ec8b4ebe28dd5e45b19f3abe213b1f4def3.zip
u-boot-af033ec8b4ebe28dd5e45b19f3abe213b1f4def3.tar.gz
u-boot-af033ec8b4ebe28dd5e45b19f3abe213b1f4def3.tar.bz2
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 <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/Makefile b/test/lib/Makefile
index 98a9abf..97c11e3 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