summaryrefslogtreecommitdiff
path: root/tools/coverage.sh
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2025-01-04 09:56:12 -0600
committerDominick Allen <djallen@librehumanitas.org>2025-01-04 09:56:12 -0600
commit0b400af9519444deef4cc6ad2c43c30e2092ab4f (patch)
treee6b0d78a2c292a7df5724f150e123b55d7871819 /tools/coverage.sh
parent253385f4bca5ccd2fee22fea8333dfe435c0df0a (diff)
Fix bug related to string copying.
Diffstat (limited to 'tools/coverage.sh')
-rwxr-xr-xtools/coverage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/coverage.sh b/tools/coverage.sh
index 0790d68..b5f4a17 100755
--- a/tools/coverage.sh
+++ b/tools/coverage.sh
@@ -6,7 +6,7 @@ cd $PROJ_ROOT
HTML_DIR=build/coverage/html
-ctest --test-dir build/test -j8
+ctest --test-dir build/test -j8 --output-on-failure
# cd build
mkdir -p ${HTML_DIR}
gcovr --exclude-throw-branches --exclude build/_deps/ --exclude test -r . --html-details ${HTML_DIR}/gcovr_report.html