build: tune down the output of lcov/gcov

In the default settings, both tools produce a lot of unhelpful noise.
This commit is contained in:
Reinhard Tartler 2013-04-21 19:08:59 +02:00
parent 69467fb64b
commit 768e44d044
1 changed files with 2 additions and 2 deletions

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: