From 1f4431e46120ef913fc9f83c78a734d910d00b3f Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Wed, 8 Apr 2020 16:57:40 -0600 Subject: [PATCH] test: Add hexdump.h to the unit test header Since ut_asserteq_mem() uses bin2hex() we should include this header in ut.h to avoid errors. Add it. Signed-off-by: Simon Glass Reviewed-by: Wolfgang Wallner --- include/test/ut.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/test/ut.h b/include/test/ut.h index 04df8ba..39d1595 100644 --- a/include/test/ut.h +++ b/include/test/ut.h @@ -8,6 +8,7 @@ #ifndef __TEST_UT_H #define __TEST_UT_H +#include #include struct unit_test_state; -- 2.7.4