search for: use_cov

Displaying 1 result from an estimated 1 matches for "use_cov".

Did you mean: use_cpu
2011 Feb 11
1
[PATCH v2v] Add support for performing automated builds
...file "LICENSE" distributed along with this file provides full +# details of the terms and conditions +# + +NAME=virt-v2v + +set -e + +rm -rf MANIFEST blib _build Build + +perl Build.PL install_base=$AUTOBUILD_INSTALL_ROOT + +./Build +./Build changelog +./Build manifest + + +if [ -z "$USE_COVER" ]; then + perl -MDevel::Cover -e '' 1>/dev/null 2>&1 && USE_COVER=1 || USE_COVER=0 +fi + +if [ -z "$SKIP_TESTS" -o "$SKIP_TESTS" = "0" ]; then + if [ "$USE_COVER" = "1" ]; then + cover -delete + HARNESS_PERL...