From 8f47d7db2ba68651b6ee851131e31409c0f32840 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Sat, 6 Dec 2025 14:20:50 +0100 Subject: [PATCH] move std allocator to forever allocator --- test_std_allocator.c => test_forever_allocator.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename test_std_allocator.c => test_forever_allocator.c (85%) diff --git a/test_std_allocator.c b/test_forever_allocator.c similarity index 85% rename from test_std_allocator.c rename to test_forever_allocator.c index a0df2b5..2b7c1e7 100644 --- a/test_std_allocator.c +++ b/test_forever_allocator.c @@ -1,8 +1,7 @@ #include #include "cig.h" -// TODO rename std to forever allocator -Test(std_allocator, test) { +Test(forever_allocator, test) { allocator_t this = forever_allocator(); void *ptr = allocator_alloc(this, 10); cr_assert(ptr != ((void *)0), "non null from malloc");