Browse Source

build: tune down the output of lcov/gcov

In the default settings, both tools produce a lot of unhelpful noise.
tags/n2.0
Reinhard Tartler 12 years ago
parent
commit
768e44d044
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/Makefile

+ 2
- 2
tests/Makefile View File

@@ -129,11 +129,11 @@ fate-list:

coverage.info: TAG = LCOV
coverage.info:
$(M)lcov -d $(CURDIR) -b $(SRC_PATH) --capture -o $@
$(M)lcov -q -d $(CURDIR) -b $(SRC_PATH) --capture -o $@

lcov: TAG = GENHTML
lcov: coverage.info
$(M)genhtml -o $(CURDIR)/lcov $<
$(M)genhtml -q -o $(CURDIR)/lcov $<

lcov-reset: TAG = LCOV
lcov-reset:


Loading…
Cancel
Save