Loading...
tests/magazine_malloc.c libmalloc-792.80.2 /dev/null
--- libmalloc/libmalloc-792.80.2/tests/magazine_malloc.c
+++ /dev/null
@@ -1,42 +0,0 @@
-//
-//  magazine_malloc.c
-//  libmalloc
-//
-//  Created by Kim Topley on 11/8/17.
-//
-#include <darwintest.h>
-#include <stdlib.h>
-#include <malloc/malloc.h>
-
-T_GLOBAL_META(T_META_RUN_CONCURRENTLY(true), T_META_TAG_VM_PREFERRED,
-		T_META_TAG_MAGAZINE_ONLY);
-
-T_DECL(malloc_zone_batch, "malloc_zone_batch_malloc and malloc_zone_batch_free",
-		T_META_ENVVAR("MallocProbGuard=0"))
-{
-	const unsigned count = 10;
-	void **results;
-	unsigned number;
-
-	// Use malloc_zone_batch_malloc() with a size that maps to the tiny
-	// allocator. This should succeed.
-	results = calloc(count, sizeof(void *));
-	number = malloc_zone_batch_malloc(malloc_default_zone(), 32, results, count);
-	T_ASSERT_EQ(number, count, "allocated from tiny zone");
-	for (int i = 0; i < count; i++) {
-		T_QUIET; T_ASSERT_NOTNULL(results[i], "pointer %d is NULL", i);
-	}
-	malloc_zone_batch_free(malloc_default_zone(), results, count);
-	free(results);
-
-	// Use malloc_zone_batch_malloc() with a size that maps to the small
-	// allocator. This should fail.
-	results = calloc(count, sizeof(void *));
-	number = malloc_zone_batch_malloc(malloc_default_zone(), 2048, results, count);
-	T_ASSERT_EQ(0, number, "could not allocat from small zone");
-	for (int i = 0; i < count; i++) {
-		T_QUIET; T_ASSERT_NULL(results[i], "pointer %d is not NULL", i);
-	}
-	malloc_zone_batch_free(malloc_default_zone(), results, count);
-	free(results);
-}