Make autotest.sh able to output proper coverage again

The usage of single quotes make sure that a string is used verbatim in
bash. And no variables are subsituted.
remotes/origin/share-copy-source-mounts
Roeland Jago Douma 9 years ago
parent 36660734a6
commit b4302a49be
  1. 2
      autotest.sh

@ -270,7 +270,7 @@ function execute_tests {
COVER='' COVER=''
if [ -z "$NOCOVERAGE" ]; then if [ -z "$NOCOVERAGE" ]; then
COVER='--coverage-clover "autotest-clover-$DB.xml" --coverage-html "coverage-html-$DB"' COVER="--coverage-clover autotest-clover-$DB.xml --coverage-html coverage-html-$DB"
else else
echo "No coverage" echo "No coverage"
fi fi

Loading…
Cancel
Save