From 672c18c99706719fc89da3b0771a8211aa6b600d Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Tue, 4 May 2010 16:20:12 +0200 Subject: [PATCH] SERVICE and SHUTDOWN is now configurable --- perf/bash/par.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/perf/bash/par.sh b/perf/bash/par.sh index 0374b46..02d271f 100755 --- a/perf/bash/par.sh +++ b/perf/bash/par.sh @@ -3,6 +3,9 @@ DELAY=0.001 WAIT=5 NUMBER=10 ROUNDS=5 +PORT=9004 +SERVICE=perf +SHUTDOWN=1 if test -n "$1"; then . $1 fi @@ -11,7 +14,7 @@ while test $r -lt $ROUNDS; do echo "$r" let i=0 while test $i -lt $NUMBER; do - ./client.sh $r.$i >$r.$i.log 2>&1 & + ./client.sh $r.$i $PORT $SERVICE >$r.$i.log 2>&1 & sleep $DELAY let i=$i+1 done @@ -19,4 +22,6 @@ while test $r -lt $ROUNDS; do let r=$r+1 done wait -wget -O x 'http://localhost:9004/?command=exit' +if [ "$SHUTDOWN" == "1" ] ; then + wget -O x "http://localhost:${PORT}/?command=exit" +fi -- 1.7.10.4