test: done for refactor, ready to merge

This commit is contained in:
2026-06-10 14:49:28 -06:00
parent c983fd22ad
commit 1a0afd331c
3 changed files with 461 additions and 135 deletions

View File

@@ -508,6 +508,7 @@ ArrayListErr arraylist_slice_unsafe(
new_slice->end = start + len;
new_slice->current = start;
new_slice->is_safe = false;
new_slice->allocator = allocator;
*slice = new_slice;
return ARRLIST_OK;

File diff suppressed because it is too large Load Diff

View File

@@ -75,7 +75,7 @@ end
-- =========================================================
if has_config("tests") then
target("test_arena")
target("test_arraylist")
set_kind("binary")
add_files("test/test_arraylist.c")