From e8f765e9d1e636a69cc5e3daf1ae02524a3e7089 Mon Sep 17 00:00:00 2001 From: Laurent Laville Date: Sat, 17 Jul 2021 08:35:42 +0200 Subject: [PATCH] do not fails extension test if some supports are not available --- scripts/tests/yac | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/tests/yac b/scripts/tests/yac index 5585fe6..83bbeaf 100755 --- a/scripts/tests/yac +++ b/scripts/tests/yac @@ -6,19 +6,16 @@ set -o nounset rc=0 if test -z "$(php --ri yac | grep 'Serializer => .*igbinary')"; then echo 'yac has not been compiled with Igbinary support' >&2 - rc=1 else echo 'yac has been compiled with Igbinary support' fi if test -z "$(php --ri yac | grep 'Serializer => .*json')"; then echo 'yac has not been compiled with Json support' >&2 - rc=1 else echo 'yac has been compiled with Json support' fi if test -z "$(php --ri yac | grep 'Serializer => .*msgpack')"; then echo 'yac has not been compiled with Msgpack support' >&2 - rc=1 else echo 'yac has been compiled with Msgpack support' fi