diff options
author | Christopher Ferris <cferris@google.com> | 2014-06-16 23:35:53 -0700 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2014-06-16 23:35:53 -0700 |
commit | 636196438180fd37027bf7b7119a436169b6923e (patch) | |
tree | cc42614ca2440bbb1b64f191d5c2eefff038e2de /tests | |
parent | a217a0cdb3ff78f6b59d64fd4356f87643ad9d1e (diff) | |
download | android_bionic-636196438180fd37027bf7b7119a436169b6923e.tar.gz android_bionic-636196438180fd37027bf7b7119a436169b6923e.tar.bz2 android_bionic-636196438180fd37027bf7b7119a436169b6923e.zip |
Use a separate config.h for config like defines.
This allows an easier way to share config parameters between unit tests
and the bionic code.
It also fixes a problem where the 32 bit bionic tests based on glibc, or
the cts list executable did not have the pvalloc,valloc tests.
Change-Id: Ib47942cb8a278252faa7498a6ef23e9578db544f
Diffstat (limited to 'tests')
-rw-r--r-- | tests/malloc_test.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/malloc_test.cpp b/tests/malloc_test.cpp index d70136496..6b7a28b1c 100644 --- a/tests/malloc_test.cpp +++ b/tests/malloc_test.cpp @@ -22,9 +22,7 @@ #include <malloc.h> #include <unistd.h> -#if defined(__BIONIC__) -#include <libc/bionic/malloc_debug_common.h> -#endif +#include "private/bionic_config.h" TEST(malloc, malloc_std) { // Simple malloc test. |