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