aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/jenkins/run_sweep_performance.sh
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-10-18 09:54:51 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-10-18 09:54:51 -0700
commit50d6f7b60faf25678b33561b0348a4dd75fe97b0 (patch)
tree3699d952bc7697b8dc68385a01a2c0c8fd5c38f2 /tools/jenkins/run_sweep_performance.sh
parent20afa3d7c933207c548ed11928c47b552b5b2f80 (diff)
parent1a62ec83b7af9c4437164d10fa23197c64542382 (diff)
Merge github.com:grpc/grpc into buffer_pools_for_realsies
Diffstat (limited to 'tools/jenkins/run_sweep_performance.sh')
-rwxr-xr-xtools/jenkins/run_sweep_performance.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/jenkins/run_sweep_performance.sh b/tools/jenkins/run_sweep_performance.sh
index 6cd7a9129b..3b22e25a45 100755
--- a/tools/jenkins/run_sweep_performance.sh
+++ b/tools/jenkins/run_sweep_performance.sh
@@ -31,6 +31,9 @@
# This script is invoked by Jenkins and runs full performance test suite.
set -ex
+SERVER_HOST=${1:-grpc-performance-server-32core}
+CLIENT_HOST1=${2:-grpc-performance-client-32core}
+CLIENT_HOST2=${3:-grpc-performance-client2-32core}
# Enter the gRPC repo root
cd $(dirname $0)/../..
@@ -39,7 +42,7 @@ tools/run_tests/run_performance_tests.py \
-l c++ \
--category sweep \
--bq_result_table performance_test.performance_experiment_32core \
- --remote_worker_host grpc-performance-server-32core grpc-performance-client-32core grpc-performance-client2-32core \
+ --remote_worker_host ${SERVER_HOST} ${CLIENT_HOST1} ${CLIENT_HOST2} \
|| EXIT_CODE=1
exit $EXIT_CODE