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.
This commit is contained in:
Roeland Jago Douma 2015-12-01 12:03:27 +01:00
parent 36660734a6
commit b4302a49be
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ function execute_tests {
COVER=''
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
echo "No coverage"
fi