Skip to content
Snippets Groups Projects
Commit 999971db authored by donnadionne's avatar donnadionne
Browse files

Merge pull request #1482 from stanley-cheung/php_cloud_prod_cmd

add command for the rest of PHP interop test
parents 0e17857a ab4ad859
No related branches found
No related tags found
No related merge requests found
......@@ -1250,6 +1250,20 @@ grpc_interop_gen_php_cmd() {
echo $the_cmd
}
# constructs the full dockerized php gce=>prod interop test cmd.
#
# call-seq:
# flags= .... # generic flags to include the command
# cmd=$($grpc_gen_test_cmd $flags)
grpc_cloud_prod_gen_php_cmd() {
local env_flag="-e SSL_CERT_FILE=/cacerts/roots.pem "
local cmd_prefix="sudo docker run $env_flag grpc/php";
local test_script="/var/local/git/grpc/src/php/bin/interop_client.sh";
local gfe_flags=$(_grpc_prod_gfe_flags);
local the_cmd="$cmd_prefix $test_script $gfe_flags $@";
echo $the_cmd
}
# constructs the full dockerized php service_account auth interop test cmd.
#
# call-seq:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment