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>
master
Pantelis Antoniou 7 years ago committed by Tom Rini
parent 54cc4dcfda
commit 4e33316f65
  1. 2
      common/dlmalloc.c

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

Loading…
Cancel
Save