From c5d6d2ff0809bfecaf23dcf70871cc74b14faefc Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Fri, 10 Oct 2025 20:18:19 +0200 Subject: [PATCH] add todo message something is wrong with the allocation detection??? --- test_borrow_allocator.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test_borrow_allocator.c b/test_borrow_allocator.c index 1e138aa..ed97ace 100644 --- a/test_borrow_allocator.c +++ b/test_borrow_allocator.c @@ -14,10 +14,13 @@ Test(borrow_allocator, test) { } +// TODO: when I update the number of allocations it does not seem to change the +// number of allocated bytes... Test(borrow_allocator, with) { with_borrow(foo) { allocator_alloc(foo, 1000); allocator_alloc(foo, 100); allocator_alloc(foo, 90); + break; } }