summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2020-10-13 15:20:52 -0400
committerTom Rini <trini@konsulko.com>2020-10-17 09:03:22 -0400
commit3d19a7ee8ca7af01f75ff24622ea3c9840cd5bca (patch)
tree26e7b0d61285bd3e038175a9b422e85ff3ff66f5 /test
parentdadc1e38306b1c3e7465bacefeb309ec1f9db6a0 (diff)
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 <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/log/syslog_test.c2
-rw-r--r--test/log/syslog_test_ndebug.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/log/syslog_test.c b/test/log/syslog_test.c
index febaca68e8..a058d8f569 100644
--- a/test/log/syslog_test.c
+++ b/test/log/syslog_test.c
@@ -18,7 +18,7 @@
#include <test/suites.h>
#include <test/ut.h>
#include <asm/eth.h>
-#include <syslog_test.h>
+#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 c7f5a60861..84844a3944 100644
--- a/test/log/syslog_test_ndebug.c
+++ b/test/log/syslog_test_ndebug.c
@@ -15,7 +15,7 @@
#include <test/suites.h>
#include <test/ut.h>
#include <asm/eth.h>
-#include <syslog_test.h>
+#include "syslog_test.h"
DECLARE_GLOBAL_DATA_PTR;