diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2025-01-04 09:56:12 -0600 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2025-01-04 09:56:12 -0600 |
commit | 0b400af9519444deef4cc6ad2c43c30e2092ab4f (patch) | |
tree | e6b0d78a2c292a7df5724f150e123b55d7871819 /tools | |
parent | 253385f4bca5ccd2fee22fea8333dfe435c0df0a (diff) |
Fix bug related to string copying.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/coverage.sh | 2 |
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 |