diff --git a/scripts/tests/memcached b/scripts/tests/memcached new file mode 100755 index 0000000..15f6c42 --- /dev/null +++ b/scripts/tests/memcached @@ -0,0 +1,18 @@ +#!/bin/sh + +set -o errexit +set -o nounset + +MODULE_CONFIGURATION="$(php --ri memcached)" +if test $1 -ge 70000; then + if php --ri igbinary >/dev/null 2>/dev/null; then + if test -z "$(printf '%s' "$MODULE_CONFIGURATION" | grep 'igbinary support => yes')"; then + echo 'igbinary support has NOT been enabled!' >&2 + fi + fi + if php --ri msgpack >/dev/null 2>/dev/null; then + if test -z "$(printf '%s' "$MODULE_CONFIGURATION" | grep 'msgpack support => yes')"; then + echo 'msgpack support has NOT been enabled!' >&2 + fi + fi +fi