~singpolyma/biboumi

fca25b7704014f7a7dec6185afe8e27b591776e4 — louiz’ 7 years ago 729078a
Remove build/* from the coverage, because that code isn’t part of biboumi
1 files changed, 1 insertions(+), 1 deletions(-)

M cmake/Modules/CodeCoverage.cmake
M cmake/Modules/CodeCoverage.cmake => cmake/Modules/CodeCoverage.cmake +1 -1
@@ 157,7 157,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} --remove ${_outputname}.info 'tests/*' '/usr/*' 'external/*' --output-file ${_outputname}.info.cleaned -q
		COMMAND ${LCOV_PATH} --remove ${_outputname}.info 'tests/*' '/usr/*' 'external/*' 'build/*' --output-file ${_outputname}.info.cleaned -q

                # Generate the report
		COMMAND ${GENHTML_PATH} -o ${_outputname} ${_outputname}.info.cleaned