mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-11 20:46:00 +01:00
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <sjg@chromium.org>
25 lines
523 B
Makefile
25 lines
523 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2017 Google, Inc
|
|
|
|
obj-$(CONFIG_LOG_TEST) += log_test.o
|
|
obj-$(CONFIG_CMD_LOG) += log_filter.o
|
|
|
|
ifdef CONFIG_UT_LOG
|
|
|
|
ifdef CONFIG_SANDBOX
|
|
obj-$(CONFIG_LOG_SYSLOG) += syslog_test.o
|
|
obj-$(CONFIG_LOG_SYSLOG) += syslog_test_ndebug.o
|
|
endif
|
|
|
|
ifdef CONFIG_LOG
|
|
obj-y += pr_cont_test.o
|
|
obj-$(CONFIG_CONSOLE_RECORD) += cont_test.o
|
|
obj-y += pr_cont_test.o
|
|
else
|
|
obj-$(CONFIG_CONSOLE_RECORD) += nolog_test.o
|
|
obj-$(CONFIG_CONSOLE_RECORD) += nolog_ndebug.o
|
|
endif
|
|
|
|
endif # CONFIG_UT_LOG
|