| 5 | #include "test_stdlib.h" |
| 6 | |
| 7 | int test_fatal_malloc(AUT_LINE *test_line acl_unused, void *arg acl_unused) |
| 8 | { |
| 9 | char *ptr; |
| 10 | |
| 11 | acl_memory_debug_start(); |
| 12 | ptr = acl_mymalloc(-1); |
| 13 | assert(ptr); |
| 14 | acl_memory_debug_stop(); |
| 15 | |
| 16 | /*not reached */ |
| 17 | return (0); |
| 18 | } |
| 19 | |
| 20 | int test_fatal_free(AUT_LINE *test_line acl_unused, void *arg acl_unused) |
| 21 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…