Skip to content
Snippets Groups Projects
Commit 1cf11f00 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

do not fail if gcov crashes, since this is basically out of our control

parent 4bc4a0f0
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ lcov --capture --directory . --output-file coverage_all.info
#lcov capture also includes external stuff like glibc, boost etc.
#only extract the reports for this project
lcov --extract coverage_all.info "@CMAKE_SOURCE_DIR@*" -o coverage_only_source_tree.info
lcov --extract coverage_all.info "@CMAKE_SOURCE_DIR@*" -o coverage_only_source_tree.info --ignore-errors gcov
#Some parts of the source code might be excluded. Set EXCLUDE_FROM_COVERAGE to contain
# a list of directories to be excluded from the coverage report.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment