From: Dennis Schafroth Date: Tue, 3 Aug 2010 11:21:13 +0000 (+0200) Subject: Optional temporary directory X-Git-Tag: v1.4.4~10^2~5 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=302c47c23daa932f88cab5310f893fcc75a85871;p=pazpar2-moved-to-github.git Optional temporary directory --- diff --git a/perf/bash/client_timed.sh b/perf/bash/client_timed.sh index c2a69a3..90d636f 100755 --- a/perf/bash/client_timed.sh +++ b/perf/bash/client_timed.sh @@ -20,9 +20,9 @@ NUM=20 H="http://localhost:${PORT}/search.pz2" declare -i MAX_WAIT=2 -/usr/bin/time --format "$OF, init, %e" wget -q -O $OF.init.xml "$H/?command=init&service=${SERVICE}&extra=$OF" 2> $OF.init.time +/usr/bin/time --format "$OF, init, %e" wget -q -O ${TMP_DIR}$OF.init.xml "$H/?command=init&service=${SERVICE}&extra=$OF" 2> ${TMP_DIR}$OF.init.time S=`xsltproc get_session.xsl $OF.init.xml` -/usr/bin/time --format "$OF, search, %e" wget -q -O $OF.search.xml "$H?command=search&query=${QUERY}&session=$S" 2> $OF.search.time +/usr/bin/time --format "$OF, search, %e" wget -q -O ${TMP_DIR}$OF.search.xml "$H?command=search&query=${QUERY}&session=$S" 2> ${TMP_DIR}$OF.search.time let r=0 DO_DISPLAY=true @@ -30,7 +30,7 @@ while [ ${DO_DISPLAY} ] ; do SLEEP=$[ ($RANDOM % $MAX_WAIT ) ] echo "show in $SLEEP" sleep $SLEEP - /usr/bin/time --format "$OF, show2, %e" wget -q -O $OF.show.$r.xml "$H?command=show&session=$S&start=$r&num=${NUM}&block=1" 2>> $OF.show.time + /usr/bin/time --format "$OF, show2, %e" wget -q -O ${TMP_DIR}$OF.show.$r.xml "$H?command=show&session=$S&start=$r&num=${NUM}&block=1" 2>> ${TMP_DIR}$OF.show.time AC=`xsltproc get_activeclients.xsl ${OF}.show.$r.xml` if [ "$AC" != "0" ] ; then echo "Active clients: ${AC}" @@ -44,4 +44,4 @@ while [ ${DO_DISPLAY} ] ; do break; fi done -/usr/bin/time --format "$OF, termlist, %e" wget -q -O $OF.termlist.$r.xml "$H?command=termlist&session=$S&name=xtargets%2Csubject%2Cauthor" 2>> $OF.termlist.time +/usr/bin/time --format "$OF, termlist, %e" wget -q -O ${TMP_DIR}$OF.termlist.$r.xml "$H?command=termlist&session=$S&name=xtargets%2Csubject%2Cauthor" 2>> ${TMP_DIR}$OF.termlist.time