diff options
author | gnzlbg <gonzalobg88@gmail.com> | 2018-07-11 13:04:48 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2018-10-17 14:12:28 (GMT) |
commit | 730e57b08fe5bd6bdc38ca4ff6a73959984d8ef0 (patch) | |
tree | 00dea452cab9a1702268b37c1e8d1054045d30b1 /Makefile.in | |
parent | 08260a6b944a67a3d9f63e7eb738718fc760e0ea (diff) | |
download | jemalloc-730e57b08fe5bd6bdc38ca4ff6a73959984d8ef0.zip jemalloc-730e57b08fe5bd6bdc38ca4ff6a73959984d8ef0.tar.gz jemalloc-730e57b08fe5bd6bdc38ca4ff6a73959984d8ef0.tar.bz2 |
Adapts mallocx integration tests for smallocx
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index c35bb7e..3d99a40 100644 --- a/Makefile.in +++ b/Makefile.in @@ -57,6 +57,7 @@ cfgoutputs_out := @cfgoutputs_out@ enable_autogen := @enable_autogen@ enable_prof := @enable_prof@ enable_zone_allocator := @enable_zone_allocator@ +enable_experimental_smallocx := @enable_experimental_smallocx@ MALLOC_CONF := @JEMALLOC_CPREFIX@MALLOC_CONF link_whole_archive := @link_whole_archive@ DSO_LDFLAGS = @DSO_LDFLAGS@ @@ -235,6 +236,10 @@ TESTS_INTEGRATION := $(srcroot)test/integration/aligned_alloc.c \ $(srcroot)test/integration/thread_arena.c \ $(srcroot)test/integration/thread_tcache_enabled.c \ $(srcroot)test/integration/xallocx.c +ifeq (@enable_experimental_smallocx@, 1) +TESTS_INTEGRATION += \ + $(srcroot)test/integration/smallocx.c +endif ifeq (@enable_cxx@, 1) CPP_SRCS := $(srcroot)src/jemalloc_cpp.cpp TESTS_INTEGRATION_CPP := $(srcroot)test/integration/cpp/basic.cpp |