aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/qps-sweep.sh
blob: 7bc6eade2c170cf81db7d2e2b01c109012fc83b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

if [ x"$QPS_WORKERS" == x ]; then
  echo Error: Must set QPS_WORKERS variable in form \
    "host:port,host:port,..." 1>&2
  exit 1
fi

bins=`find . .. ../.. ../../.. -name bins | head -1`

for channels in 1 2 4 8
do
  for client in SYNCHRONOUS_CLIENT ASYNC_CLIENT
  do
    for server in SYNCHRONOUS_SERVER ASYNC_SERVER
    do
      for rpc in UNARY STREAMING
      do
        echo "Test $rpc $client $server , $channels channels"
        "$bins"/opt/qps_driver --rpc_type=$rpc \
          --client_type=$client --server_type=$server
      done
    done
  done
done