mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
395041b2fd
If CONFIG_LOG=n, we still expect output for log_err(), log_warning(), log_notice(), log_info() and in case of DEBUG=1 also for log_debug(). Provide unit tests verifying this. The tests depend on: CONFIG_CONSOLE_RECORD=y CONFIG_LOG=n CONFIG_UT_LOG=y It may be necessary to increase the value of CONFIG_SYS_MALLOC_F_LEN to accommodate CONFIG_CONSOLE_RECORD=y. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
14 lines
420 B
Makefile
14 lines
420 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2012 The Chromium Authors
|
|
|
|
obj-$(CONFIG_SANDBOX) += bloblist.o
|
|
obj-$(CONFIG_UNIT_TEST) += cmd_ut.o
|
|
obj-$(CONFIG_UNIT_TEST) += ut.o
|
|
obj-$(CONFIG_SANDBOX) += command_ut.o
|
|
obj-$(CONFIG_SANDBOX) += compression.o
|
|
obj-$(CONFIG_SANDBOX) += print_ut.o
|
|
obj-$(CONFIG_UT_TIME) += time_ut.o
|
|
obj-$(CONFIG_UT_UNICODE) += unicode_ut.o
|
|
obj-y += log/
|
|
obj-$(CONFIG_UNIT_TEST) += lib/
|