diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2005-07-05 12:17:24 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2005-07-05 12:17:24 +0000 |
commit | e066e8b6169aad64906fe71546b20633abc83f3a (patch) | |
tree | fd65283108b5f0896abe06b7fc8ba0947a52521b | |
parent | 82a5239bfeb1c7b50a91783b2c3c4ea0981d12d4 (diff) |
better report genration target (lcov needs a patch)
Original commit message from CVS:
better report genration target (lcov needs a patch)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 6 |
2 files changed, 6 insertions, 5 deletions
@@ -1,3 +1,8 @@ +2005-07-05 Stefan Kost <ensonic@users.sf.net> + + * Makefile.am: + better report genration target (lcov needs a patch) + 2005-07-05 Andy Wingo <wingo@pobox.com> * gst/elements, testsuite: Null if we got it... diff --git a/Makefile.am b/Makefile.am index 00fba601c..2e2adbe44 100644 --- a/Makefile.am +++ b/Makefile.am @@ -110,11 +110,7 @@ coverage-report.txt: test-coverage-report.html: mkdir -p ./coverage lcov --directory . --zerocounters - $(MAKE) check - ## workaround for lcov not liking libtool - for file in `find . -name "*.da" | grep "\.libs" ` ;do \ - mv $$file `echo $$file | sed -e 's/\/\.libs//'`; \ - done + -$(MAKE) check lcov --directory . --capture --output-file ./coverage/$(PACKAGE).info genhtml -o ./coverage --num-spaces 2 ./coverage/$(PACKAGE).info |