소스 검색

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.
Roeland Jago Douma 8 년 전
부모
커밋
b4302a49be
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      autotest.sh

+ 1 - 1
autotest.sh

@@ -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