summaryrefslogtreecommitdiffstats
path: root/tests/parsertest.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parsertest.c')
-rw-r--r--tests/parsertest.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/parsertest.c b/tests/parsertest.c
index 3ccae3d6..6c2221e8 100644
--- a/tests/parsertest.c
+++ b/tests/parsertest.c
@@ -105,7 +105,7 @@ int openPipe(pid_t *pid, int *pfd)
char *newenviron[] = { NULL };
- sprintf(confFile, "-f%s/testruns/parser2.conf", getenv("srcdir"));
+ sprintf(confFile, "-f%s/testruns/parser.conf", getenv("srcdir"));
newargv[1] = confFile;
if (pipe(pipefd) == -1) {
@@ -232,7 +232,13 @@ doTests(int fd, char *files)
}
globfree(&testFiles);
- printf("Number of tests run: %d, number of failures: %d\n", iTests, iFailed);
+ if(iTests == 0) {
+ printf("Error: no test cases found, no tests executed.\n");
+ iFailed = 1;
+ } else {
+ printf("Number of tests run: %d, number of failures: %d\n", iTests, iFailed);
+ }
+
return(iFailed);
}
@@ -261,5 +267,3 @@ int main(int argc, char *argv[])
printf("End of parser tests.\n");
exit(ret);
}
-
-