diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2010-07-25 19:52:41 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-18 12:42:18 -0700 |
commit | b5eed98104853dfed63e5c9f2a6214df74f7b0a7 (patch) | |
tree | 0f6730383c85b3308285761995959b935d8d07b7 /Makefile | |
parent | Makefile: Include subdirectories in "make cover" reports (diff) | |
download | tgif-b5eed98104853dfed63e5c9f2a6214df74f7b0a7.tar.xz |
Makefile: Split out the untested functions target
Change the coverage-report target so that it doesn't generate the
coverage-untested-functions file by default. I'm adding more targets
for doing various things with the gcov files, and they shouldn't all
run by default.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2312,6 +2312,8 @@ coverage-report: $(QUIET_GCOV)for dir in $(object_dirs); do \ gcov $(GCOVFLAGS) --object-directory=$$dir $$dir*.c || exit; \ done + +coverage-untested-functions: coverage-report grep '^function.*called 0 ' *.c.gcov \ | sed -e 's/\([^:]*\)\.gcov: *function \([^ ]*\) called.*/\1: \2/' \ > coverage-untested-functions |