summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2025-01-03 00:08:58 -0600
committerDominick Allen <djallen@librehumanitas.org>2025-01-03 00:08:58 -0600
commitd93307d810b3f4ee8044f7308e360d9ea9c7cf22 (patch)
tree08cfe9ae27c2a9d5bd11881089b9a3333a3c11b8 /tools
parent1ac94c8aff47b549f30b370be2191bcc0157826c (diff)
More fixups to csv logic.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/coverage.sh6
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