1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

coverage: fix invocation of gcovr

This commit is contained in:
Steffen Vogel 2018-03-28 14:58:35 +02:00
parent 9543c7406a
commit 2f84d6c43b

View file

@ -26,7 +26,7 @@ COVERAGE_OBJS = $(LIB_OBJS) $(SRC_OBJS)
GCDAS = $(COVERAGE_OBJS:.o=.gcda)
GCNOS = $(COVERAGE_OBJS:.o=.gcno)
GCOVR_OPTS = --exclude ^include --root $(SRCDIR) --sort-percentage --print-summary
GCOVR_OPTS = --exclude $(SRCDIR)/include --root $(SRCDIR) --sort-percentage --print-summary
coverage: $(BUILDDIR)/coverage/index.html $(BUILDDIR)/coverage.xml $(BUILDDIR)/coverage.txt
@ -53,4 +53,4 @@ clean-coverage:
install-coverage:
.INTERMEDIATE: $(addsuffix .gcdas,$(COVERAGE_TESTS))
.PHONY: coverage gcda clean-coverage install-coverage
.PHONY: coverage gcda clean-coverage install-coverage