Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2013-04-21 21:08:59 +0400
committerReinhard Tartler <siretart@tauware.de>2013-05-04 11:34:58 +0400
commit768e44d044bc32de1e58c198a3708d186af7e966 (patch)
tree8e600fe6ceedbadfb4f7cda28e3b4c6cf05c4fee
parent69467fb64ba4972c7aa436ded2468bb32df9fa97 (diff)
build: tune down the output of lcov/gcov
In the default settings, both tools produce a lot of unhelpful noise.
-rw-r--r--tests/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 0495132c89..86b7503c93 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -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: