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

fixed adding the new option to the wrong line in the last commit

parent 1cf11f00
No related branches found
No related tags found
No related merge requests found
......@@ -25,11 +25,11 @@
rm -f `find . -name "*\.gcda"`
make test
lcov --capture --directory . --output-file coverage_all.info
lcov --capture --directory . --output-file coverage_all.info --ignore-errors gcov
#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 --ignore-errors gcov
lcov --extract coverage_all.info "@CMAKE_SOURCE_DIR@*" -o coverage_only_source_tree.info
#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