Skip to content
Snippets Groups Projects
Commit 472d646f authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Remove the quiet flag (-q) when invoking fastcov

This gives better information when running into problems
parent 08ba4a92
No related branches found
No related tags found
1 merge request!71Feature/language tiny matrices
This commit is part of merge request !71. Comments created here will be created in the context of that merge request.
...@@ -445,7 +445,7 @@ if("${CMAKE_BUILD_TYPE}" STREQUAL "Coverage") ...@@ -445,7 +445,7 @@ if("${CMAKE_BUILD_TYPE}" STREQUAL "Coverage")
add_custom_target(coverage add_custom_target(coverage
ALL # in coverage mode we do coverage! ALL # in coverage mode we do coverage!
COMMAND ${FASTCOV} -q --gcov "${GCOV_BIN}" COMMAND ${FASTCOV} --gcov "${GCOV_BIN}"
--include "${PUGS_SOURCE_DIR}/src" --include "${PUGS_SOURCE_DIR}/src"
--exclude "${PUGS_SOURCE_DIR}/src/main.cpp" "${PUGS_SOURCE_DIR}/src/utils/BacktraceManager.*" "${PUGS_SOURCE_DIR}/src/utils/FPEManager.*" "${PUGS_SOURCE_DIR}/src/utils/SignalManager.*" --exclude "${PUGS_SOURCE_DIR}/src/main.cpp" "${PUGS_SOURCE_DIR}/src/utils/BacktraceManager.*" "${PUGS_SOURCE_DIR}/src/utils/FPEManager.*" "${PUGS_SOURCE_DIR}/src/utils/SignalManager.*"
--lcov -o coverage.info -n --lcov -o coverage.info -n
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment