mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Run coverage commands quietly
They are very chatty by default, but the output doesn't seem all that useful for normal operation. Reviewed-by: Michael Paquier <michael.paquier@gmail.com>
This commit is contained in:
@ -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
|
|||||||
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)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user