diff options
author | Allan LeSage <allanlesage@gmail.com> | 2012-03-21 11:22:01 -0500 |
---|---|---|
committer | Allan LeSage <allanlesage@gmail.com> | 2012-03-21 11:22:01 -0500 |
commit | 577fad28e2a126a1ae7168bf73a9da3405d23b5f (patch) | |
tree | b3f5012ac57f7b9140eb8894a7f5572f230b7dbf /Makefile.am.coverage | |
parent | cf5c77a39f7355e8a2a6ee719a36bcbe6dfc0d7f (diff) | |
download | ayatana-indicator-sound-577fad28e2a126a1ae7168bf73a9da3405d23b5f.tar.gz ayatana-indicator-sound-577fad28e2a126a1ae7168bf73a9da3405d23b5f.tar.bz2 ayatana-indicator-sound-577fad28e2a126a1ae7168bf73a9da3405d23b5f.zip |
Removed gcovr dependency for coverage tooling.
Diffstat (limited to 'Makefile.am.coverage')
-rw-r--r-- | Makefile.am.coverage | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Makefile.am.coverage b/Makefile.am.coverage new file mode 100644 index 0000000..a9bfa2b --- /dev/null +++ b/Makefile.am.coverage @@ -0,0 +1,45 @@ + +# Coverage targets + +if HAVE_GCOV + +.PHONY: clean-gcda +clean-gcda: + @echo Removing old coverage results + -find -name '*.gcda' -print | xargs -r rm + +.PHONY: coverage-html generate-coverage-html clean-coverage-html +coverage-html: clean-gcda + -$(MAKE) $(AM_MAKEFLAGS) -k check + $(MAKE) $(AM_MAKEFLAGS) generate-coverage-html + +generate-coverage-html: + @echo Collecting coverage data + $(LCOV) --directory $(top_builddir) --capture --output-file coverage.info --no-checksum --compat-libtool + LANG=C $(GENHTML) --prefix $(top_builddir) --output-directory coveragereport --title "Code Coverage" --legend --show-details coverage.info + +clean-coverage-html: clean-gcda + -$(LCOV) --directory $(top_builddir) -z + -rm -rf coverage.info coveragereport + +.PHONY: clean-local +clean-local: clean-coverage-html + + +if HAVE_GCOVR + +.PHONY: coverage-gcovr generate-coverage-gcovr clean-coverage-gcovr +coverage-gcovr: clean-gcda + -$(MAKE) $(AM_MAKEFLAGS) -k check + $(MAKE) $(AM_MAKEFLAGS) generate-coverage-gcovr + +generate-coverage-gcovr: + @echo Generating coverage GCOVR report + $(GCOVR) -x -r $(top_builddir) -o $(top_builddir)/coverage.gcovr + +clean-coverage-gcovr: clean-gcda + -rm -rf $(top_builddir)/coverage.gcovr + +endif # HAVE_GCOVR + +endif # HAVE_GCOV |