aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-07-19 20:03:46 +0200
committerMattias Andrée <maandree@kth.se>2022-07-19 20:03:46 +0200
commit6b1b5443fb8f07c52d1c2df2843592f79742156c (patch)
tree953c2a1ef5ed8a2849d62386413dea5ad525db0b
parentImprove README (diff)
downloadlibparsepcf-6b1b5443fb8f07c52d1c2df2843592f79742156c.tar.gz
libparsepcf-6b1b5443fb8f07c52d1c2df2843592f79742156c.tar.bz2
libparsepcf-6b1b5443fb8f07c52d1c2df2843592f79742156c.tar.xz
Add coverage test (requires `make check` which has not been implemented yet)
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--Makefile1
-rw-r--r--config-coverage-gcc.mk11
2 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 11fa042..17ee3d3 100644
--- a/Makefile
+++ b/Makefile
@@ -46,6 +46,7 @@ HDR =\
common.h
LOBJ = $(OBJ:.o=.lo)
+SRC = $(OBJ:.o=.c)
all: libparsepcf.a libparsepcf.$(LIBEXT) demo
diff --git a/config-coverage-gcc.mk b/config-coverage-gcc.mk
new file mode 100644
index 0000000..18de147
--- /dev/null
+++ b/config-coverage-gcc.mk
@@ -0,0 +1,11 @@
+CONFIGFILE_PROPER = config.mk
+include $(CONFIGFILE_PROPER)
+
+CC = $(CC_PREFIX)gcc -std=c99
+GCOV = gcov
+
+CFLAGS = -g -O0 -pedantic -fprofile-arcs -ftest-coverage
+LDFLAGS = -lgcov -fprofile-arcs
+
+coverage: check
+ $(GCOV) -pr $(SRC) 2>&1