From: Tobias Brunner Date: Wed, 27 Mar 2013 16:41:04 +0000 (+0100) Subject: Also capture coverage data for tests but filter them from the result X-Git-Tag: 5.1.0dr1~129^2~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab73ae67d3eed94ed16b41fdc66afee5e7027222;p=thirdparty%2Fstrongswan.git Also capture coverage data for tests but filter them from the result Otherwise calls from test cases to static inline functions are not captured. --- diff --git a/Makefile.am b/Makefile.am index c7ece4a21c..d9bae5f205 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 e99b3b5e9d..5e3a2526d5 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@