aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2010-07-25 19:52:41 +0000
committerJunio C Hamano <gitster@pobox.com>2010-08-18 12:42:18 -0700
commitb5eed98104853dfed63e5c9f2a6214df74f7b0a7 (patch)
tree0f6730383c85b3308285761995959b935d8d07b7
parentbc548efe0037839e1a4a611e5f0f24b33fc39dc5 (diff)
downloadgit-b5eed98104853dfed63e5c9f2a6214df74f7b0a7.tar.gz
git-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>
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e1e150df9..11f1df278 100644
--- a/Makefile
+++ b/Makefile
@@ -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