Commit 0ae6f6a9 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 16dc9a65
......@@ -498,6 +498,13 @@ cmd_bench_cluster() {
wait
}
# command: run client workload against sepearate server
cmd_run_client() {
url=$1
test -z "$url" && die "Usage: neotest run-client <url>"
bench $url
}
# ---- main driver ----
usage() {
......@@ -521,15 +528,18 @@ EOF
case "$1" in
bench-local)
cmd_bench_local
shift
cmd_bench_local "$@"
;;
bench-client)
cmd_bench_client
run-client)
shift
cmd_run_client "$@"
;;
bench-cluster)
cmd_bench_cluster
shift
cmd_bench_cluster "$@"
;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment