summaryrefslogtreecommitdiff
path: root/rules
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-10-05 18:34:59 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-10-05 18:34:59 +0100
commit50668ea83a111b3e795a3ba0e9cc73735bda4b2e (patch)
tree41fbbac9728ea5136929e64aac47a852014d0402 /rules
parente7ca1633d073bed2a77c98dab731a6d1357ce14e (diff)
downloadtelepathy-salut-50668ea83a111b3e795a3ba0e9cc73735bda4b2e.tar.gz
Remove lcov output cleaning, which no longer works in the current version
Diffstat (limited to 'rules')
-rw-r--r--rules/lcov.mak8
1 files changed, 2 insertions, 6 deletions
diff --git a/rules/lcov.mak b/rules/lcov.mak
index 5cdfe5f8..702a94e2 100644
--- a/rules/lcov.mak
+++ b/rules/lcov.mak
@@ -22,11 +22,7 @@ lcov-run:
lcov-report:
@mkdir -p $(COVERAGE_DIR)
@lcov --quiet --compat-libtool --directory . --capture --output-file $(COVERAGE_DIR)/lcov.info
- @lcov --quiet --compat-libtool -l $(COVERAGE_DIR)/lcov.info | grep -v "`cd $(top_srcdir) && pwd`" | cut -d: -f1 > $(COVERAGE_DIR)/remove
- @lcov --quiet --compat-libtool -l $(COVERAGE_DIR)/lcov.info | grep "tests/" | cut -d: -f1 >> $(COVERAGE_DIR)/remove
- @lcov --quiet --compat-libtool -r $(COVERAGE_DIR)/lcov.info `cat $(COVERAGE_DIR)/remove` > $(COVERAGE_DIR)/lcov.cleaned.info
- @rm $(COVERAGE_DIR)/remove
- @mv $(COVERAGE_DIR)/lcov.cleaned.info $(COVERAGE_DIR)/lcov.info
@echo =================================================
- @genhtml -t "$(PACKAGE_STRING)" -o $(COVERAGE_DIR) $(COVERAGE_DIR)/lcov.info |grep 'Overall'
+ @genhtml -t "$(PACKAGE_STRING)" -o $(COVERAGE_DIR) $(COVERAGE_DIR)/lcov.info
+ @echo file://@abs_top_builddir@/$(COVERAGE_DIR)/index.html
@echo =================================================