Coverage report

This commit is contained in:
Pieter Noordhuis 2011-06-19 13:07:12 +02:00
parent be5e943ddd
commit 54a10a27e7
1 changed files with 6 additions and 0 deletions

View File

@ -136,6 +136,12 @@ gprof:
gcov:
$(MAKE) CFLAGS="-fprofile-arcs -ftest-coverage" LDFLAGS="-fprofile-arcs"
coverage: gcov
make check
mkdir -p tmp/lcov
lcov -d . -c -o tmp/lcov/hiredis.info
genhtml --legend -o tmp/lcov/report tmp/lcov/hiredis.info
noopt:
$(MAKE) OPTIMIZATION=""