Skip to content
Snippets Groups Projects
Commit 3affdddf authored by vjpai's avatar vjpai
Browse files

Add secure testing to sweep

parent f8603adb
No related branches found
No related tags found
No related merge requests found
...@@ -37,17 +37,21 @@ fi ...@@ -37,17 +37,21 @@ fi
bins=`find . .. ../.. ../../.. -name bins | head -1` bins=`find . .. ../.. ../../.. -name bins | head -1`
for channels in 1 2 4 8 for secure in true false
do do
for client in SYNC_CLIENT ASYNC_CLIENT for channels in 1 2 4 8
do do
for server in SYNC_SERVER ASYNC_SERVER for client in SYNC_CLIENT ASYNC_CLIENT
do do
for rpc in UNARY STREAMING for server in SYNC_SERVER ASYNC_SERVER
do do
echo "Test $rpc $client $server , $channels channels" for rpc in UNARY STREAMING
"$bins"/opt/qps_driver --rpc_type=$rpc \ do
--client_type=$client --server_type=$server echo "Test $rpc $client $server, $channels channels, secure=$secure"
"$bins"/opt/qps_driver --rpc_type=$rpc \
--client_type=$client --server_type=$server \
--secure_test=$secure
done
done done
done done
done done
......
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