X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;f=perf%2Fbash%2Fpar.sh;h=3df80a3de5609e93f29e3343bc6566a58c628c41;hb=c44be5cbd65ece442d632e0cc5cae71620ba543d;hp=085e4fc6457933ef44e010f2b3defe0d9c83c04e;hpb=098b558355b375d17f6fff413b836b2ae8438e65;p=pazpar2-moved-to-github.git diff --git a/perf/bash/par.sh b/perf/bash/par.sh index 085e4fc..3df80a3 100755 --- a/perf/bash/par.sh +++ b/perf/bash/par.sh @@ -1,17 +1,27 @@ #!/bin/bash DELAY=0.001 -NUMBER=40 +WAIT=5 +NUMBER=10 ROUNDS=5 +PORT=9004 +SERVICE=perf_t +SHUTDOWN=1 +if test -n "$1"; then + . $1 +fi let r=0 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 + sleep $WAIT 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