diff options
author | Jason Evans <je@facebook.com> | 2010-10-07 16:53:26 (GMT) |
---|---|---|
committer | Jason Evans <je@facebook.com> | 2010-10-07 16:53:26 (GMT) |
commit | 9f3b0a74fdaac6fa5eb8b5a875b8901bc56b2f5e (patch) | |
tree | e7a09df8008af79aa44c90afddae06bf6912316c /jemalloc/test/allocm.c | |
parent | 1506a1b90341cf27415c01b271b56f82f682fd07 (diff) | |
download | jemalloc-9f3b0a74fdaac6fa5eb8b5a875b8901bc56b2f5e.zip jemalloc-9f3b0a74fdaac6fa5eb8b5a875b8901bc56b2f5e.tar.gz jemalloc-9f3b0a74fdaac6fa5eb8b5a875b8901bc56b2f5e.tar.bz2 |
Fix tests build when --with-install-suffix is set.
Add test/jemalloc_test.h.in, which is processed to include
jemalloc/jemalloc@install_suffix@.h, so that test programs can include
it without worrying about the install suffix.
Diffstat (limited to 'jemalloc/test/allocm.c')
-rw-r--r-- | jemalloc/test/allocm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jemalloc/test/allocm.c b/jemalloc/test/allocm.c index 4367cb8..59d0002 100644 --- a/jemalloc/test/allocm.c +++ b/jemalloc/test/allocm.c @@ -3,7 +3,7 @@ #include <stdint.h> #define JEMALLOC_MANGLE -#include "jemalloc/jemalloc.h" +#include "jemalloc_test.h" #define CHUNK 0x400000 /* #define MAXALIGN ((size_t)0x80000000000LLU) */ |