| Oct 14 2007 | Coverage Analysis in Testing | Back Next |
Parrot configuration and build tools
COVERAGEDIR=/home/user/parrot/coverage/configure-build
RECONFDIR=/home/user/work/reconf
coverconf ()
{
cd $RECONFDIR && \
cover -delete $COVERAGEDIR && \
PERL5OPT=-MDevel::Cover=-db,$COVERAGEDIR/ \
perl $RECONFDIR/Configure.pl --test --configure_trace "$@" && \
cover $COVERAGEDIR \
-ignore_re 'Configure\.pl' \
-ignore_re '^t\/' \
-ignore_re '^\/usr\/local\/bin' \
-ignore_re '^lib\/(?!Parrot)' && \
chmod 0755 $COVERAGEDIR/
}
| Home Last TOC | Copyright © 2007 James E Keenan | Back Next |