summaryrefslogtreecommitdiff
path: root/tools/coverage.sh
blob: 95eef0389432b05ddda78c7a81049149fb42a0fd (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

PROJ_ROOT=$(git rev-parse --show-toplevel)
cd $PROJ_ROOT

HTML_DIR=build/coverage/html

ctest --test-dir build/test -j8
mkdir -p ${HTML_DIR}
gcovr --exclude-throw-branches --exclude build/_deps/ --exclude test -r  . --html-details ${HTML_DIR}/gcovr_report.html