From b4302a49be9e0ea67f53fe566c9335fa23ed9a9f Mon Sep 17 00:00:00 2001
From: Roeland Jago Douma <rullzer@owncloud.com>
Date: Tue, 1 Dec 2015 12:03:27 +0100
Subject: [PATCH] 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.
---
 autotest.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/autotest.sh b/autotest.sh
index eb57264c953..5196d5c31d5 100755
--- a/autotest.sh
+++ b/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
-- 
GitLab