diff options
author | Jason Evans <je@fb.com> | 2014-01-04 00:35:03 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2014-01-04 00:35:03 (GMT) |
commit | 981bb499d92fee940d5be79cec3abdd3de3891b8 (patch) | |
tree | 563b9d821286dd63d757b5e8b796828d3deaadad /Makefile.in | |
parent | b954bc5d3a65966df0ce7801cd6102542b5e894b (diff) | |
download | jemalloc-981bb499d92fee940d5be79cec3abdd3de3891b8.zip jemalloc-981bb499d92fee940d5be79cec3abdd3de3891b8.tar.gz jemalloc-981bb499d92fee940d5be79cec3abdd3de3891b8.tar.bz2 |
Add unit tests for qr, ql, and rb.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 6dd9174..78f16af 100644 --- a/Makefile.in +++ b/Makefile.in @@ -110,9 +110,11 @@ 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/quarantine.c \ - $(srcroot)test/unit/rtree.c $(srcroot)test/unit/SFMT.c \ - $(srcroot)test/unit/stats.c $(srcroot)test/unit/tsd.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 TESTS_INTEGRATION := $(srcroot)test/integration/aligned_alloc.c \ $(srcroot)test/integration/allocated.c \ $(srcroot)test/integration/mallocx.c \ |