Add a target to convert the *.gcov files to a Devel::Cover database. That database can subsequently be formatted by the cover(1) tool, which is included with Devel::Cover. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> --- .gitignore | 1 + Makefile | 4 ++++ 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 0e61845..bd53c02 100644 --- a/.gitignore +++ b/.gitignore @@ -208,3 +208,4 @@ *.gcno *.gcov /coverage-untested-functions +/cover_db diff --git a/Makefile b/Makefile index e9f8ef8..f2c680d 100644 --- a/Makefile +++ b/Makefile @@ -2303,3 +2303,7 @@ coverage-untested-functions: coverage-report grep '^function.*called 0 ' *.c.gcov \ | sed -e 's/\([^:]*\)\.gcov: *function \([^ ]*\) called.*/\1: \2/' \ | tee coverage-untested-functions + +coverage-report-cover-db: coverage-report + gcov2perl -db cover_db *.gcov + -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html