build: tune down the output of lcov/gcov

In the default settings, both tools produce a lot of unhelpful noise.
pull/16/head
Reinhard Tartler 12 years ago
parent 69467fb64b
commit 768e44d044
  1. 4
      tests/Makefile

@ -129,11 +129,11 @@ fate-list:
coverage.info: TAG = LCOV coverage.info: TAG = LCOV
coverage.info: 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: TAG = GENHTML
lcov: coverage.info lcov: coverage.info
$(M)genhtml -o $(CURDIR)/lcov $< $(M)genhtml -q -o $(CURDIR)/lcov $<
lcov-reset: TAG = LCOV lcov-reset: TAG = LCOV
lcov-reset: lcov-reset:

Loading…
Cancel
Save