I'm currently working on gcov and I need to pointers to study gcov. Perl scripts are being used to automate testing and I need to use gcov for test coverage. Apart from the gcov documentation what are the other things I should be aware of ? How do I proceed ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Devel::Cover has gcov support.

cd project_root
perl Makefile.PL
cover -test -gcov
$BROWSER cover_db/coverage.html
cover -delete
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.