X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=.gitlab-ci%2Fdeqp-runner.sh;h=6034b71a2c29f50911beecb56cd1463e99bd622a;hb=b6db703e0f007fbcf4389ec607ae4c3e8fc9ee0d;hp=b9f14fe25b46515216ed4b8d483068e3304cb4b3;hpb=eca02ec44aa977a86ab858c1c5ff3dd6ba91fae4;p=mesa.git diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index b9f14fe25b4..6034b71a2c2 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -149,10 +149,10 @@ extract_xml_result() { if [ "$line" = "$start" ]; then dst="$testcase.qpa" echo "#beginSession" > $dst - echo $line >> $dst + echo "$line" >> $dst while IFS= read -r line; do if [ "$line" = "#endTestCaseResult" ]; then - echo $line >> $dst + echo "$line" >> $dst echo "#endSession" >> $dst /deqp/executor/testlog-to-xml $dst "$RESULTS/$testcase$DEQP_RUN_SUFFIX.xml" # copy the stylesheets here so they only end up in artifacts @@ -161,7 +161,7 @@ extract_xml_result() { cp /deqp/testlog.xsl "$RESULTS/" return 0 fi - echo $line >> $dst + echo "$line" >> $dst done return 1 fi