From 044047fae122d3e4a22d8d6748b598922b3c3ccc Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Thu, 24 Sep 2015 19:52:28 -0700 Subject: Remove fragile xallocx() test case. In addition to depending on map coalescing, the test depended on munmap() being disabled so that chunk recycling would always succeed. --- test/integration/xallocx.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/integration/xallocx.c b/test/integration/xallocx.c index f69d48d..3736252 100644 --- a/test/integration/xallocx.c +++ b/test/integration/xallocx.c @@ -444,20 +444,11 @@ TEST_END TEST_BEGIN(test_zero_huge) { size_t huge0, huge1; - static const bool maps_coalesce = -#ifdef JEMALLOC_MAPS_COALESCE - true -#else - false -#endif - ; /* Get size classes. */ huge0 = get_huge_size(0); huge1 = get_huge_size(1); - if (maps_coalesce) - test_zero(huge0, huge0 * 4); test_zero(huge1, huge0 * 2); } TEST_END -- cgit v0.12