diff options
-rw-r--r-- | Makefile.am | 20 | ||||
-rw-r--r-- | src/libstrongswan/tests/Makefile.am | 2 |
2 files changed, 13 insertions, 9 deletions
diff --git a/Makefile.am b/Makefile.am index c7ece4a21..d9bae5f20 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,20 +37,24 @@ Doxyfile : Doxyfile.in apidoc : Doxyfile doxygen -if COVERAGE -cov-reset: +cov-reset-common: @rm -rf $(top_builddir)/coverage @find $(top_builddir) -name "*.gcda" -delete + +if COVERAGE +cov-reset: cov-reset-common @lcov --zerocounters --directory $(top_builddir) cov-report: @mkdir $(top_builddir)/coverage lcov -c -o $(top_builddir)/coverage/coverage.info -d $(top_builddir) + lcov -r $(top_builddir)/coverage/coverage.info '*/tests/*' \ + -o $(top_builddir)/coverage/coverage.cleaned.info genhtml --num-spaces 4 --legend \ -t "$(PACKAGE_STRING)" \ -o $(top_builddir)/coverage/html \ -p `readlink -m $(abs_top_srcdir)`/src \ - $(top_builddir)/coverage/coverage.info + $(top_builddir)/coverage/coverage.cleaned.info @echo "Coverage Report at $(top_builddir)/coverage/html" >&2 coverage: @@ -58,12 +62,12 @@ coverage: @$(MAKE) check @$(MAKE) cov-report else -cov-reset: - coverage: @echo "reconfigure with --enable-coverage" endif -clean-local: - @$(MAKE) cov-reset - rm -rf apidoc +clean-local: cov-reset-common + @find $(top_builddir) -name "*.gcno" -delete + @rm -rf apidoc + +.PHONY: cov-reset-common cov-reset cov-report coverage
\ No newline at end of file diff --git a/src/libstrongswan/tests/Makefile.am b/src/libstrongswan/tests/Makefile.am index e99b3b5e9..5e3a2526d 100644 --- a/src/libstrongswan/tests/Makefile.am +++ b/src/libstrongswan/tests/Makefile.am @@ -8,9 +8,9 @@ test_runner_SOURCES = \ test_chunk.c test_hashtable.c test_identification.c \ test_threading.c test_utils.c - test_runner_CFLAGS = \ -I$(top_srcdir)/src/libstrongswan \ + @COVERAGE_CFLAGS@ \ @CHECK_CFLAGS@ test_runner_LDFLAGS = @COVERAGE_LDFLAGS@ |