File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ test_enable() {
88 assert_equals " 0" " $? "
99}
1010test_alertConflictWithXDebug () {
11+ # Skip this test for PHP 8.5 since xdebug is not yet available
12+ if [[ " ${PHP_VERSION} " == " 8.5" ]]; then
13+ echo " -- Skipping blackfire+xdebug conflict test for PHP${PHP_VERSION} (xdebug not available)"
14+ return 0
15+ fi
1116 # Tests that blackfire + xdebug will output an error
1217 RESULT=" $( docker run ${RUN_OPTIONS} --rm -e PHP_EXTENSION_XDEBUG=1 -e PHP_EXTENSION_BLACKFIRE=1 \
1318 " ${REPO} :${TAG_PREFIX}${PHP_VERSION} -${BRANCH} -${BRANCH_VARIANT} " \
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22. ./config
33
4+ # xdebug is not yet available for PHP 8.5
5+ if [[ " ${PHP_VERSION} " == " 8.5" ]]; then
6+ echo " -- PHP${PHP_VERSION} does not yet have xdebug package available"
7+ return 0
8+ fi
9+
410# ###########################################################
511# # xdebug
612# ###########################################################
You can’t perform that action at this time.
0 commit comments