diff options
| author | Heinrich Schuchardt <[email protected]> | 2020-04-15 18:46:23 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-04-24 10:51:32 -0400 |
| commit | be621c11b9f88bf9715618fc402efa543232399d (patch) | |
| tree | 54ad6c1888e95bba0688892240d18a92e5a506aa | |
| parent | f6a24a177f3e09d9c954b25f5a52cdfdea3e6c85 (diff) | |
dlmalloc: remove unit test support in SPL
We cannot run unit tests in SPL. So remove the unit test support.
Signed-off-by: Heinrich Schuchardt <[email protected]>
| -rw-r--r-- | common/dlmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/dlmalloc.c b/common/dlmalloc.c index dade68faf74..db5ab55ed33 100644 --- a/common/dlmalloc.c +++ b/common/dlmalloc.c @@ -1,6 +1,6 @@ #include <common.h> -#if defined(CONFIG_UNIT_TEST) +#if CONFIG_IS_ENABLED(UNIT_TEST) #define DEBUG #endif |
