summaryrefslogtreecommitdiff
path: root/deps/jemalloc/test/unit/pages.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jemalloc/test/unit/pages.c')
-rw-r--r--deps/jemalloc/test/unit/pages.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/deps/jemalloc/test/unit/pages.c b/deps/jemalloc/test/unit/pages.c
deleted file mode 100644
index ee729eece..000000000
--- a/deps/jemalloc/test/unit/pages.c
+++ /dev/null
@@ -1,29 +0,0 @@
-#include "test/jemalloc_test.h"
-
-TEST_BEGIN(test_pages_huge) {
- size_t alloc_size;
- bool commit;
- void *pages, *hugepage;
-
- alloc_size = HUGEPAGE * 2 - PAGE;
- commit = true;
- pages = pages_map(NULL, alloc_size, PAGE, &commit);
- assert_ptr_not_null(pages, "Unexpected pages_map() error");
-
- if (init_system_thp_mode == thp_mode_default) {
- hugepage = (void *)(ALIGNMENT_CEILING((uintptr_t)pages, HUGEPAGE));
- assert_b_ne(pages_huge(hugepage, HUGEPAGE), have_madvise_huge,
- "Unexpected pages_huge() result");
- assert_false(pages_nohuge(hugepage, HUGEPAGE),
- "Unexpected pages_nohuge() result");
- }
-
- pages_unmap(pages, alloc_size);
-}
-TEST_END
-
-int
-main(void) {
- return test(
- test_pages_huge);
-}