From: Heinrich Schuchardt Date: Wed, 26 Feb 2020 20:48:15 +0000 (+0100) Subject: log: correct CONFIG_LOG_TEST prerequisites X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=d1a02f53b3f24dfce488ba244ba4f8809bebe596;p=u-boot.git log: correct CONFIG_LOG_TEST prerequisites An error undefined reference to `do_log_test' occurs for CONFIG_CMD_LOG=y, CONFIG_LOG_TEST=y, CONGIG_UNIT_TEST=n Make CONFIG_UNIT_TEST a prerequisite. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/common/Kconfig b/common/Kconfig index 3072651082..40da8fa7a3 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -777,7 +777,7 @@ config TPL_LOG_CONSOLE config LOG_TEST bool "Provide a test for logging" - depends on LOG + depends on LOG && UNIT_TEST default y if SANDBOX help This enables a 'log test' command to test logging. It is normally