From patchwork Sun Jun 7 03:52:37 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kever Yang X-Patchwork-Id: 241862 List-Id: U-Boot discussion From: kever.yang at rock-chips.com (Kever Yang) Date: Sun, 7 Jun 2020 11:52:37 +0800 Subject: [PATCH] test: add dependency for UT_LOG Message-ID: <20200607035237.5996-1-kever.yang@rock-chips.com> The callback of do_ut_log() is defined in test/log/test-main.c which is depend on CONFIG_LOG. Signed-off-by: Kever Yang --- test/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/test/Kconfig b/test/Kconfig index 9b2f84b551..8c32fa5cbd 100644 --- a/test/Kconfig +++ b/test/Kconfig @@ -42,6 +42,7 @@ endif config UT_LOG bool "Unit tests for logging functions" + depends on LOG depends on UNIT_TEST default y help