From: Sean Anderson Date: Tue, 13 Oct 2020 19:20:52 +0000 (-0400) Subject: test: Fix sandbox tests failing to build X-Git-Tag: v2021.01-rc1~20 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d19a7ee8ca7af01f75ff24622ea3c9840cd5bca;p=pandora-u-boot.git test: Fix sandbox tests failing to build syslog_test.h is in test/log/, not include/ Fixes: 52d3df7fef ("log: Allow LOG_DEBUG to always enable log output") Signed-off-by: Sean Anderson Reviewed-by: Simon Glass --- diff --git a/test/log/syslog_test.c b/test/log/syslog_test.c index febaca68e8d..a058d8f5695 100644 --- a/test/log/syslog_test.c +++ b/test/log/syslog_test.c @@ -18,7 +18,7 @@ #include #include #include -#include +#include "syslog_test.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/test/log/syslog_test_ndebug.c b/test/log/syslog_test_ndebug.c index c7f5a60861f..84844a39440 100644 --- a/test/log/syslog_test_ndebug.c +++ b/test/log/syslog_test_ndebug.c @@ -15,7 +15,7 @@ #include #include #include -#include +#include "syslog_test.h" DECLARE_GLOBAL_DATA_PTR;