Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 52e1b1b

Browse files
committed
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 <[email protected]>
1 parent c011236 commit 52e1b1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile.global.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ coverage: $(local_gcda_files:.gcda=.c.gcov)
893893
.PHONY: coverage-html
894894
coverage-html: coverage-html-stamp
895895

896-
GENHTML_FLAGS = --legend
896+
GENHTML_FLAGS = -q --legend
897897
GENHTML_TITLE = PostgreSQL $(VERSION)
898898

899899
coverage-html-stamp: lcov_base.info lcov_test.info
@@ -902,7 +902,7 @@ coverage-html-stamp: lcov_base.info lcov_test.info
902902
touch $@
903903

904904
LCOV += --gcov-tool $(GCOV)
905-
LCOVFLAGS = --no-external
905+
LCOVFLAGS = -q --no-external
906906

907907
all_gcno_files = $(shell find . -name '*.gcno' -print)
908908

0 commit comments

Comments
 (0)