diff options
author | ZhouyihaiDing <ddyihai@google.com> | 2018-04-12 16:43:33 -0700 |
---|---|---|
committer | ZhouyihaiDing <ddyihai@google.com> | 2018-05-12 15:00:18 -0700 |
commit | 9ef881e1accc55dca39f07f530cfe309c07a43f1 (patch) | |
tree | b57b0bad500988bb95ffe0c318462a66603549c8 /tools/run_tests/helper_scripts | |
parent | 23e17baa23e325e6a92fa84252b5bab1786a0e37 (diff) |
PHP: chang shared channel behavior
PHP: add persistent list upper bounnd check
change upper bound from global to each target
add ref/unreef; Only delete ref_count=0; make the code cleaner
persistent map update after review
u2nd pdate after the review
Diffstat (limited to 'tools/run_tests/helper_scripts')
-rwxr-xr-x | tools/run_tests/helper_scripts/build_php.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/helper_scripts/build_php.sh b/tools/run_tests/helper_scripts/build_php.sh index 443be34fa0..4add036672 100755 --- a/tools/run_tests/helper_scripts/build_php.sh +++ b/tools/run_tests/helper_scripts/build_php.sh @@ -30,8 +30,8 @@ cd src/php cd ext/grpc phpize if [ "$CONFIG" != "gcov" ] ; then - ./configure --enable-grpc="$root" + ./configure --enable-grpc="$root" --enable-tests else - ./configure --enable-grpc="$root" --enable-coverage + ./configure --enable-grpc="$root" --enable-coverage --enable-tests fi make |