malloc: Turn on DEBUG when enabling unit tests

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>
This commit is contained in:
Pantelis Antoniou 2017-05-25 19:24:06 +03:00 committed by Tom Rini
parent 54cc4dcfda
commit 4e33316f65

View File

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