diff options
author | Andrea Shepard <andrea@torproject.org> | 2014-05-12 18:23:34 -0700 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2014-05-12 18:23:34 -0700 |
commit | 39d4e67be8283b2a7141a7aa8342d30e27f47e6f (patch) | |
tree | dbc602ce1470c3e8c7b2d13ec89336464b563956 /src/test/test_util.c | |
parent | 17435384c050b29cd3c70819ac7176c407f4d1bb (diff) | |
download | tor-39d4e67be8283b2a7141a7aa8342d30e27f47e6f.tar.gz tor-39d4e67be8283b2a7141a7aa8342d30e27f47e6f.zip |
Add --disable-mempools configure option
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r-- | src/test/test_util.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c index 6d6b6dbdf8..eadbf730ea 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -12,7 +12,9 @@ #include "config.h" #include "control.h" #include "test.h" +#ifdef ENABLE_MEMPOOLS #include "mempool.h" +#endif /* ENABLE_MEMPOOLS */ #include "memarea.h" #ifdef _WIN32 @@ -1899,6 +1901,8 @@ test_util_path_is_relative(void) ; } +#ifdef ENABLE_MEMPOOLS + /** Run unittests for memory pool allocator */ static void test_util_mempool(void) @@ -1957,6 +1961,8 @@ test_util_mempool(void) mp_pool_destroy(pool); } +#endif /* ENABLE_MEMPOOLS */ + /** Run unittests for memory area allocator */ static void test_util_memarea(void) @@ -3656,7 +3662,9 @@ struct testcase_t util_tests[] = { UTIL_LEGACY(pow2), UTIL_LEGACY(gzip), UTIL_LEGACY(datadir), +#ifdef ENABLE_MEMPOOLS UTIL_LEGACY(mempool), +#endif UTIL_LEGACY(memarea), UTIL_LEGACY(control_formats), UTIL_LEGACY(mmap), |