Add full coverage for list.c

This commit is contained in:
Drew DeVault 2016-06-19 12:06:16 -04:00
parent 5b7cb67779
commit cd64ad56b9
3 changed files with 211 additions and 5 deletions

View file

@ -14,5 +14,10 @@ enum wrapper_behavior {
int reset_mem_wrappers(void **state);
void memory_behavior(enum wrapper_behavior behavior);
int malloc_calls();
int free_calls();
int calloc_calls();
int realloc_calls();
int alloc_calls();
#endif