diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2025-01-03 00:08:58 -0600 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2025-01-03 00:08:58 -0600 |
commit | d93307d810b3f4ee8044f7308e360d9ea9c7cf22 (patch) | |
tree | 08cfe9ae27c2a9d5bd11881089b9a3333a3c11b8 /tools | |
parent | 1ac94c8aff47b549f30b370be2191bcc0157826c (diff) |
More fixups to csv logic.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/coverage.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/coverage.sh b/tools/coverage.sh index 870e1f9..0790d68 100755 --- a/tools/coverage.sh +++ b/tools/coverage.sh @@ -4,9 +4,9 @@ set -e PROJ_ROOT=$(git rev-parse --show-toplevel) cd $PROJ_ROOT -HTML_DIR=coverage/html +HTML_DIR=build/coverage/html ctest --test-dir build/test -j8 -cd build +# cd build mkdir -p ${HTML_DIR} -gcovr --exclude-throw-branches --exclude _deps/ --exclude ../test -r . --html-details ${HTML_DIR}/gcovr_report.html +gcovr --exclude-throw-branches --exclude build/_deps/ --exclude test -r . --html-details ${HTML_DIR}/gcovr_report.html |