r2744: ben elliston taught me about gcov today, which allows you to measure
commit4f13ebef5d6711ac121b9c41e2fbbe2cd3b6da0e
authorAndrew Tridgell <tridge@samba.org>
Wed, 29 Sep 2004 06:31:14 +0000 (29 06:31 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:59:29 +0000 (10 12:59 -0500)
tree9c97145fdcde8e5e7d9d2736b0571caae530db7e
parent173b61817b23c7338a30cae819cc63879543587f
r2744: ben elliston taught me about gcov today, which allows you to measure
the % coverage in terms of lines of code of a test suite. I thought a
good first place to start with gcov was the talloc test suite. When I
started the test suite covered about 60% of all lines of code in
talloc.c, and now it covers about 99%. The only lines not covered are
talloc corruption errors, as that would cause smb_panic() to fire.

It will be interesting to try gcov on the main Samba test suite for
smbd. We won't achieve 100% coverage, but it would be nice to get to
90% or more.

I also modified the talloc.c sources to be able to be build standalone, using:

  gcc -c -D_STANDALONE_ -Iinlcude lib/talloc.c

that should make it much easier to re-use talloc in other projects
(This used to be commit 8d4dc99b82efdf24b6811851c7bdd4af5a4c52c9)
source4/include/includes.h
source4/include/talloc.h
source4/lib/talloc.c
source4/torture/local/talloc.c
talloc_guide.txt