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
main.c
View file

@ -37,6 +37,8 @@ bool oldstyle = false;
bool editline = true;
bool prompt = true;
// LCOV_EXCL_START
// exclude from coverage analysis because it requires interactivity to test
static void sig_handler(int signo)
{
if (signo == SIGINT) {
@ -45,6 +47,7 @@ static void sig_handler(int signo)
}
exit(0);
}
// LCOV_EXCL_STOP
/*
* MAIN PROGRAM

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);
}