aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-05-20 13:10:51 +0200
committerGitHub <noreply@github.com>2022-05-20 13:10:51 +0200
commitaf4a90924d513fb65d0723dad322d7af3e78ae61 (patch)
tree54d34686c77f93095fcf9eac0853ab4bb2fc6a82
parent87ce03db1ac8f1d7313850128528e5b8f06fce66 (diff)
parentb933e997c305e50e147c2dc120d21f59453f4c9a (diff)
downloadnextcloud-server-af4a90924d513fb65d0723dad322d7af3e78ae61.tar.gz
nextcloud-server-af4a90924d513fb65d0723dad322d7af3e78ae61.zip
Merge pull request #32497 from nextcloud/fix/custom-php-runtime-autotest
Use custom PHP runtime for PHPUnit execution in autotest
-rwxr-xr-xautotest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotest.sh b/autotest.sh
index ed66c7b2260..00e6b96836b 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -395,8 +395,8 @@ function execute_tests {
echo "No coverage"
fi
- echo "${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
- "${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
+ echo "$PHP" "${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
+ "$PHP" "${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
RESULT=$?
if [ "$PRIMARY_STORAGE_CONFIG" == "swift" ] ; then