Commit 52e1b1b0 authored by Peter Eisentraut's avatar Peter Eisentraut

Run coverage commands quietly

They are very chatty by default, but the output doesn't seem all that
useful for normal operation.
Reviewed-by: default avatarMichael Paquier <michael.paquier@gmail.com>
parent c0112363
...@@ -893,7 +893,7 @@ coverage: $(local_gcda_files:.gcda=.c.gcov) ...@@ -893,7 +893,7 @@ coverage: $(local_gcda_files:.gcda=.c.gcov)
.PHONY: coverage-html .PHONY: coverage-html
coverage-html: coverage-html-stamp coverage-html: coverage-html-stamp
GENHTML_FLAGS = --legend GENHTML_FLAGS = -q --legend
GENHTML_TITLE = PostgreSQL $(VERSION) GENHTML_TITLE = PostgreSQL $(VERSION)
coverage-html-stamp: lcov_base.info lcov_test.info coverage-html-stamp: lcov_base.info lcov_test.info
...@@ -902,7 +902,7 @@ coverage-html-stamp: lcov_base.info lcov_test.info ...@@ -902,7 +902,7 @@ coverage-html-stamp: lcov_base.info lcov_test.info
touch $@ touch $@
LCOV += --gcov-tool $(GCOV) LCOV += --gcov-tool $(GCOV)
LCOVFLAGS = --no-external LCOVFLAGS = -q --no-external
all_gcno_files = $(shell find . -name '*.gcno' -print) all_gcno_files = $(shell find . -name '*.gcno' -print)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment