From fb0304bbbed01d5c4e6ac9f5daef83368d3a4e98 Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Thu, 24 Feb 2011 11:08:14 +0100 Subject: [PATCH] Fix: use pp2client.sh --- perf/bash/par.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perf/bash/par.sh b/perf/bash/par.sh index 881e171..54399d0 100755 --- a/perf/bash/par.sh +++ b/perf/bash/par.sh @@ -6,6 +6,7 @@ ROUNDS=5 PORT=9004 SERVICE=perf_t SHUTDOWN=1 +HOST=127.0.0.1 if test -n "$1"; then . $1 fi @@ -14,7 +15,7 @@ while test $r -lt $ROUNDS; do echo "$r" let i=0 while test $i -lt $NUMBER; do - ./client.sh --outfile=$r.$i --prefix=http://localhost:${PORT}/search.pz2 --service=$SERVICE >$r.$i.log 2>&1 & + ./pp2client.sh --outfile=$r.$i --prefix=http://$HOST:${PORT}/search.pz2 --service=$SERVICE >$r.$i.log 2>&1 & sleep $DELAY let i=$i+1 done -- 1.7.10.4