aboutsummaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/run.sh b/run.sh
index 5047602..72d83d8 100755
--- a/run.sh
+++ b/run.sh
@@ -1,7 +1,8 @@
#!/bin/bash
-build_dir=/home/dennis/projects/cmix/build-cmix-Desktop-Debug
+#build_dir=/home/dennis/projects/cmix/build-cmix-Desktop-Debug
#build_dir=/home/dbrentje/projects/cmix/build
+build_dir=/home/dennis/projects/cmix/build-Default
if [ $# == 0 ] ; then
tool=""
@@ -21,7 +22,7 @@ nr_clients=500
tmux new-session -s cmix -d
-tmux send-keys -t cmix:0 "cd ${build_dir} && LSAN_OPTIONS=report_objects=1 $tool statsd/statsd" Enter
+#tmux send-keys -t cmix:0 "cd ${build_dir} && LSAN_OPTIONS=report_objects=1 $tool statsd/statsd" Enter
tmux new-window -t cmix:1
tmux send-keys -t cmix:1 "cd ${build_dir} && LSAN_OPTIONS=report_objects=1 $tool node/node -f -m ${nr_clients} -n node2.local:9201 -s localhost:9199 -a node1 -c ../certs/cert1.pem -k ../certs/key1.pem -d ../certs/dh.pem --certdir ../certs/" Enter
@@ -38,7 +39,7 @@ do
tmux send-keys -t cmix:${i} "cd ${build_dir} && LSAN_OPTIONS=report_objects=1 $tool client/client --certdir ../certs -n node1.local:9200 node2.local:9201 node3.local:9202" Enter
done
-tmux select-window -t cmix:3
+tmux select-window -t cmix:4
tmux attach
tmux kill-session -t cmix