Test coverage: make LCOV ignore sig_handler and OOM check

This commit is contained in:
Aaron Traas 2017-06-28 12:19:20 -04:00 committed by Eric S. Raymond
parent d5942e1732
commit 94aca03203
2 changed files with 6 additions and 0 deletions

3
misc.c
View file

@ -15,8 +15,11 @@ void* xmalloc(size_t size)
{
void* ptr = malloc(size);
if (ptr == NULL) {
// LCOV_EXCL_START
// exclude from coverage analysis because we can't simulate an out of memory error in testing
fprintf(stderr, "Out of memory!\n");
exit(EXIT_FAILURE);
// LCOV_EXCL_STOP
}
return (ptr);
}