diff options
author | David Robillard <d@drobilla.net> | 2022-09-01 23:55:07 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-09-02 00:05:26 -0400 |
commit | afc6ef7e54988fd68f33df21ec2a220e6bfc49f4 (patch) | |
tree | 6dcef700e8a4a806d71162f56ef0585e4cc19993 /test | |
parent | 1a4a2c607782eac013088ea8afb5a899e72b1f22 (diff) | |
download | zix-afc6ef7e54988fd68f33df21ec2a220e6bfc49f4.tar.gz zix-afc6ef7e54988fd68f33df21ec2a220e6bfc49f4.tar.bz2 zix-afc6ef7e54988fd68f33df21ec2a220e6bfc49f4.zip |
Improve test coverage
Diffstat (limited to 'test')
-rw-r--r-- | test/test_allocator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_allocator.c b/test/test_allocator.c index e146de6..425cc41 100644 --- a/test/test_allocator.c +++ b/test/test_allocator.c @@ -83,6 +83,7 @@ test_bump_allocator(void) assert(!zix_realloc(&allocator.base, malloced, 8)); // Not the top assert(!zix_realloc(&allocator.base, realloced, 4089)); // No space + assert(!zix_calloc(&allocator.base, 4089, 1)); // No space zix_free(&allocator.base, realloced); |