malloc: Turn on DEBUG when enabling unit tests
authorPantelis Antoniou <pantelis.antoniou@konsulko.com>
Thu, 25 May 2017 16:24:06 +0000 (19:24 +0300)
committerTom Rini <trini@konsulko.com>
Mon, 5 Jun 2017 18:13:11 +0000 (14:13 -0400)
Unit tests require mallinfo which in turn requires DEBUG on
dlmalloc to be enabled.

The dependancy on CONFIG_SANDBOX is wrong.

Signed-off-by: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
common/dlmalloc.c

index adc680e..fc1e8b3 100644 (file)
@@ -1,6 +1,6 @@
 #include <common.h>
 
-#ifdef CONFIG_SANDBOX
+#if defined(CONFIG_UNIT_TEST)
 #define DEBUG
 #endif