docker-php-extension-installer/scripts/tests/event
Michele Locati 7c3dbd2b9e
Add support for event
Test: event+sockets
2021-08-03 11:59:27 +02:00

22 lines
516 B
Bash
Executable File

#!/bin/sh
set -o errexit
set -o nounset
rc=0
if php --ri sockets >/dev/null 2>/dev/null; then
if test -z "$(php --ri event | grep 'Sockets support => enabled')"; then
echo 'event has not been compiled with sockets support' >&2
rc=1
else
echo 'event has been compiled with sockets support'
fi
fi
if test -z "$(php --ri event | grep 'OpenSSL support => enabled')"; then
echo 'event has not been compiled with OpenSSL support' >&2
rc=1
else
echo 'event has been compiled with OpenSSL support'
fi
exit $rc