summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2014-01-08 00:47:56 (GMT)
committerJason Evans <je@fb.com>2014-01-08 00:54:17 (GMT)
commit6b694c4d47278cddfaaedeb7ee49fa5757e35ed5 (patch)
treeaf5722f43f512489a10ed7cacb4f9de890ee0cfc /Makefile.in
parente18c25d23de0e845f0ee7e11d02c1be044738a3c (diff)
downloadjemalloc-6b694c4d47278cddfaaedeb7ee49fa5757e35ed5.zip
jemalloc-6b694c4d47278cddfaaedeb7ee49fa5757e35ed5.tar.gz
jemalloc-6b694c4d47278cddfaaedeb7ee49fa5757e35ed5.tar.bz2
Add junk/zero filling unit tests, and fix discovered bugs.
Fix growing large reallocation to junk fill new space. Fix huge deallocation to junk fill when munmap is disabled.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in15
1 files changed, 8 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in
index 470495c..89d8255 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -108,13 +108,14 @@ C_TESTLIB_SRCS := $(srcroot)test/src/math.c $(srcroot)test/src/mtx.c \
$(srcroot)test/src/thd.c
C_UTIL_INTEGRATION_SRCS := $(srcroot)src/util.c
TESTS_UNIT := $(srcroot)test/unit/bitmap.c $(srcroot)test/unit/ckh.c \
- $(srcroot)test/unit/hash.c $(srcroot)test/unit/mallctl.c \
- $(srcroot)test/unit/math.c $(srcroot)test/unit/mq.c \
- $(srcroot)test/unit/mtx.c $(srcroot)test/unit/ql.c \
- $(srcroot)test/unit/qr.c $(srcroot)test/unit/quarantine.c \
- $(srcroot)test/unit/rb.c $(srcroot)test/unit/rtree.c \
- $(srcroot)test/unit/SFMT.c $(srcroot)test/unit/stats.c \
- $(srcroot)test/unit/tsd.c $(srcroot)test/unit/util.c
+ $(srcroot)test/unit/hash.c $(srcroot)test/unit/junk.c \
+ $(srcroot)test/unit/mallctl.c $(srcroot)test/unit/math.c \
+ $(srcroot)test/unit/mq.c $(srcroot)test/unit/mtx.c \
+ $(srcroot)test/unit/ql.c $(srcroot)test/unit/qr.c \
+ $(srcroot)test/unit/quarantine.c $(srcroot)test/unit/rb.c \
+ $(srcroot)test/unit/rtree.c $(srcroot)test/unit/SFMT.c \
+ $(srcroot)test/unit/stats.c $(srcroot)test/unit/tsd.c \
+ $(srcroot)test/unit/util.c $(srcroot)test/unit/zero.c
TESTS_INTEGRATION := $(srcroot)test/integration/aligned_alloc.c \
$(srcroot)test/integration/allocated.c \
$(srcroot)test/integration/mallocx.c \