summaryrefslogtreecommitdiff
path: root/tools/Utils
diff options
context:
space:
mode:
authorAlexander <AKutsan@luxoft.com>2016-04-26 12:04:05 +0300
committerAlexander <AKutsan@luxoft.com>2016-04-26 12:04:05 +0300
commit7effb0a99725f8449192a4a1a44a46409615970d (patch)
tree4b40c50e7d18ff0392d786b4fd4faa0457246ea8 /tools/Utils
parentcf58bb97d09c536dce3b492d1517da0b837bc8eb (diff)
downloadsdl_core-7effb0a99725f8449192a4a1a44a46409615970d.tar.gz
Add quiet flag to coverage collecting
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