diff options
author | Florian Pritz <bluewind@xinu.at> | 2021-02-21 11:23:27 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2021-02-21 11:23:27 +0100 |
commit | 252f2bfacd0b4a24a57d6774ce43bdaa3c29f4a2 (patch) | |
tree | 2ec5658c3d1cb9f423cff2aa5f03726e51c4d230 /run-tests.sh | |
parent | 08510ba2faa4785339ca7093ba0fa7052ff5d0c8 (diff) |
PHP8: Fix testsuite compatibility
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-x | run-tests.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/run-tests.sh b/run-tests.sh index db6a977f4..166aacd3f 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -6,6 +6,10 @@ export ENVIRONMENT="testsuite" export COLLECT_COVERAGE=1 +if [[ $COLLECT_COVERAGE = 1 ]]; then + export XDEBUG_MODE=coverage +fi + startdir="$(dirname "$0")" datadir="testsuite-tmp" |