Test coverage: make LCOV ignore sig_handler and OOM check
This commit is contained in:
parent
d5942e1732
commit
94aca03203
2 changed files with 6 additions and 0 deletions
3
misc.c
3
misc.c
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue