summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorQi Wang <interwq@gwu.edu>2017-08-11 22:41:52 (GMT)
committerQi Wang <interwq@gmail.com>2017-08-11 22:57:12 (GMT)
commit3ec279ba1c702286b2a7d4ce7aaf48d7905f1c5b (patch)
treed4777143d2244dfe788c23bc0f341e1fa0c3443b /test/unit
parent8fdd9a579779b84d6af27f94c295f82a4df8e5be (diff)
downloadjemalloc-3ec279ba1c702286b2a7d4ce7aaf48d7905f1c5b.zip
jemalloc-3ec279ba1c702286b2a7d4ce7aaf48d7905f1c5b.tar.gz
jemalloc-3ec279ba1c702286b2a7d4ce7aaf48d7905f1c5b.tar.bz2
Fix test/unit/pages.
As part of the metadata_thp support, We now have a separate swtich (JEMALLOC_HAVE_MADVISE_HUGE) for MADV_HUGEPAGE availability. Use that instead of JEMALLOC_THP (which doesn't guard pages_huge anymore) in tests.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/pages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/pages.c b/test/unit/pages.c
index 67dbb4c..1a979e6 100644
--- a/test/unit/pages.c
+++ b/test/unit/pages.c
@@ -11,7 +11,7 @@ TEST_BEGIN(test_pages_huge) {
assert_ptr_not_null(pages, "Unexpected pages_map() error");
hugepage = (void *)(ALIGNMENT_CEILING((uintptr_t)pages, HUGEPAGE));
- assert_b_ne(pages_huge(hugepage, HUGEPAGE), config_thp,
+ assert_b_ne(pages_huge(hugepage, HUGEPAGE), have_madvise_huge,
"Unexpected pages_huge() result");
assert_false(pages_nohuge(hugepage, HUGEPAGE),
"Unexpected pages_nohuge() result");