summaryrefslogtreecommitdiff
path: root/tools/Utils
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Utils')
-rwxr-xr-xtools/Utils/collect_coverage.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/Utils/collect_coverage.sh b/tools/Utils/collect_coverage.sh
index 081b39f3b1..47559e6c47 100755
--- a/tools/Utils/collect_coverage.sh
+++ b/tools/Utils/collect_coverage.sh
@@ -17,11 +17,11 @@ rm -rf $COVERAGE_DIR
rm -rf $REPORTS_DIR -
mkdir $COVERAGE_DIR
-lcov --capture --directory . --output-file $COVERAGE_DIR/full_report.info
-lcov --remove $COVERAGE_DIR/full_report.info '/usr/*' '*/test/*' '*/src/3rd*' '*/build/src/*' --output-file $COVERAGE_DIR/coverage.info
+lcov --quiet --capture --directory . --output-file $COVERAGE_DIR/full_report.info
+lcov --quiet --remove $COVERAGE_DIR/full_report.info '/usr/*' '*/test/*' '*/src/3rd*' '*/build/src/*' --output-file $COVERAGE_DIR/coverage.info
mkdir $REPORTS_DIR
-genhtml $COVERAGE_DIR/coverage.info --output-directory $REPORTS_DIR
+genhtml --quiet $COVERAGE_DIR/coverage.info --output-directory $REPORTS_DIR
html2text -width 150 $REPORTS_DIR/index.html
tar -zcf coverage_report.tar.gz $REPORTS_DIR
echo More information avaliable in $REPORTS_DIR/index.html