Loading...
--- libmalloc/libmalloc-792.60.6/tests/xzone_bitmap.c
+++ libmalloc/libmalloc-657.60.21/tests/xzone_bitmap.c
@@ -2,8 +2,6 @@
 #include <inttypes.h>
 
 #include <../src/internal.h>
-
-T_GLOBAL_META(T_META_RUN_CONCURRENTLY(true), T_META_TAG_VM_PREFERRED);
 
 #if CONFIG_XZONE_MALLOC
 
@@ -265,7 +263,7 @@
 	chunk->xzc_used = 0;
 	chunk->xzc_bits.xzcb_kind = XZM_SLICE_KIND_SMALL_CHUNK;
 	chunk->xzc_bits.xzcb_is_pristine = true;
-	chunk->xzc_bits.xzcb_on_partial_list = false;
+	chunk->xzc_bits.xzcb_enqueued = false;
 	chunk->xzcs_slice_count = slice_count;
 
 	for (xzm_slice_count_t idx = 1; idx < chunk->xzcs_slice_count; ++idx) {
@@ -440,6 +438,8 @@
 	run_programmatic_tests(chunk, slice_count, chunk_idx, populate);
 }
 
+T_GLOBAL_META(T_META_RUN_CONCURRENTLY(true));
+
 T_DECL(slice_on_allocate, "Slice range computation on allocation from small chunk",
 		T_META_TAG_XZONE_ONLY)
 {
@@ -455,13 +455,13 @@
 #else // CONFIG_XZONE_MALLOC
 
 T_DECL(slice_on_allocate, "Slice range computation on allocation from small chunk",
-		T_META_ENABLED(false), T_META_TAG_NO_ALLOCATOR_OVERRIDE)
+		T_META_ENABLED(false))
 {
 	T_SKIP("Nothing to test for !CONFIG_XZONE_MALLOC");
 }
 
 T_DECL(slice_on_deallocate, "Slice range computation on deallocation from small chunk",
-		T_META_ENABLED(false), T_META_TAG_NO_ALLOCATOR_OVERRIDE)
+		T_META_ENABLED(false))
 {
 	T_SKIP("Nothing to test for !CONFIG_XZONE_MALLOC");
 }