do not report "self coverage"

This commit is contained in:
Martin Diehl 2023-09-28 07:20:09 +02:00
parent dab5ba1e60
commit f1b0f68000
1 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ unittest_GNU_DEBUG:
- cmake --build ${TMPDIR} --target install
- cd ${TMPDIR}
- ./bin/DAMASK_test
- find -name \*.gcda | xargs gcov
- find -name \*.gcda -not -path "**/test/*" | xargs gcov
unittest_GNU_RELEASE:
stage: compile
@ -105,7 +105,7 @@ unittest_GNU_RELEASE:
- cmake --build ${TMPDIR} --target install
- cd ${TMPDIR}
- ./bin/DAMASK_test
- find -name \*.gcda | xargs gcov
- find -name \*.gcda -not -path "**/test/*" | xargs gcov
unittest_GNU_PERFORMANCE:
stage: compile
@ -116,7 +116,7 @@ unittest_GNU_PERFORMANCE:
- cmake --build ${TMPDIR} --target install
- cd ${TMPDIR}
- ./bin/DAMASK_test
- find -name \*.gcda | xargs gcov
- find -name \*.gcda -not -path "**/test/*" | xargs gcov
grid_GNU: