diff --git a/src/php/bin/run_tests.sh b/src/php/bin/run_tests.sh index 50175e5b0676b80a701f08119969b6505ee47c59..c334ad90915d48e22db89cb1868e0ef7e63e9c64 100755 --- a/src/php/bin/run_tests.sh +++ b/src/php/bin/run_tests.sh @@ -1,6 +1,17 @@ #!/bin/sh # Loads the local shared library, and runs all of the test cases in tests/ # against it +set -ex cd $(dirname $0) -php -d extension_dir=../ext/grpc/modules/ -d extension=grpc.so \ +default_extension_dir=`php -i | grep extension_dir | sed 's/.*=> //g'` + +# sym-link in system supplied extensions +for f in $default_extension_dir/*.so +do + ln -s $f ../ext/grpc/modules/$(basename $f) || true +done + +php \ + -d extension_dir=../ext/grpc/modules/ \ + -d extension=grpc.so \ phpunit -v --debug --strict ../tests/unit_tests