diff options
author | louiz’ <louiz@louiz.org> | 2018-06-11 20:45:30 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-06-11 20:45:30 +0200 |
commit | 11020cb805932b2de7e17d80a011501cda29030f (patch) | |
tree | aec07b2302d9eb9b07c8c9288d74c50e3b422f7c /cmake | |
parent | bc1652378c43f27f0c0323641e95d60968b8d143 (diff) | |
download | biboumi-11020cb805932b2de7e17d80a011501cda29030f.tar.gz biboumi-11020cb805932b2de7e17d80a011501cda29030f.tar.bz2 biboumi-11020cb805932b2de7e17d80a011501cda29030f.tar.xz biboumi-11020cb805932b2de7e17d80a011501cda29030f.zip |
Try somethingdebug_coverage
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Modules/CodeCoverage.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/CodeCoverage.cmake b/cmake/Modules/CodeCoverage.cmake index 98e3274..66a3e36 100644 --- a/cmake/Modules/CodeCoverage.cmake +++ b/cmake/Modules/CodeCoverage.cmake @@ -158,7 +158,7 @@ FUNCTION(SETUP_TARGET_FOR_COVERAGE _targetname _testrunner _outputname) # Remove information about source files that are not part of # the test (system file, external libraries, etc) COMMAND ${LCOV_PATH} --list ${_outputname}.info - COMMAND ${LCOV_PATH} --remove ${_outputname}.info 'tests/*' '/usr/*' 'external/*' 'build/*' --output-file ${_outputname}.info + COMMAND ${LCOV_PATH} --remove ${_outputname}.info '*/tests/*' '/usr/*' '*/external/*' '*/build/*' --output-file ${_outputname}.info # Generate the report COMMAND ${GENHTML_PATH} -o ${_outputname} ${_outputname}.info |