Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-05-19 14:58:19 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-05-19 14:58:19 +0300
commitb933e997c305e50e147c2dc120d21f59453f4c9a (patch)
treef0241b53c3ac417b197cba6c29885589485a2d8e /autotest.sh
parent2c5d604a7628c9cc782a6a4de0ad0a5bf7328eff (diff)
Use custom PHP runtime for PHPUnit execution in autotestfix/custom-php-runtime-autotest
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'autotest.sh')
-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