# HG changeset patch # User Mike Becker # Date 1612697241 -3600 # Node ID c195c33de85d9e519888b49c5c7c77db58c7cf0b # Parent f094a53c1178a1d93f7c95e9204a17f70c4fe24a add at least a cxFree() call, even if we can't test it diff -r f094a53c1178 -r c195c33de85d test/test_allocator.c --- a/test/test_allocator.c Sun Feb 07 12:20:07 2021 +0100 +++ b/test/test_allocator.c Sun Feb 07 12:27:21 2021 +0100 @@ -59,6 +59,8 @@ } void test_default_free(void) { + void* test = malloc(16); + cxFree(cxDefaultAllocator, test); CU_PASS("Testing standard free is not possible.") }