aboutsummaryrefslogtreecommitdiffstats
path: root/fbench/util
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-06-14 15:53:36 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-06-14 15:53:36 +0000
commit60143c6650ecb170bc82b4c6c831ac852e1d0bf7 (patch)
treedd919d4713dd379051abab9e7832105d5449f9fe /fbench/util
parentd7b09dc811c113279eeda75a131092e9175a01e7 (diff)
Rename vespa-geturl to vespa-fbench-geturl.
Rename vespa-resultfilter.pl to vespa-fbench-result-filter.pl.
Diffstat (limited to 'fbench/util')
-rwxr-xr-xfbench/util/runtests.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/fbench/util/runtests.sh b/fbench/util/runtests.sh
index bd9f17a969c..dd18fd6d9b4 100755
--- a/fbench/util/runtests.sh
+++ b/fbench/util/runtests.sh
@@ -23,7 +23,7 @@ if [ $# -lt 8 ] || [ "$opt_error" = "true" ]; then
echo "<deltaClients> increments. For each client count, the cycle time will"
echo "vary in the same way according to <minCycle>, <maxCycle> and <deltaCycle>."
echo "vespa-fbench is run with each combination of client count and cycle time, and"
- echo "the result output is filtered with the 'vespa-resultfilter.pl' script."
+ echo "the result output is filtered with the 'vespa-fbench-result-filter.pl' script."
echo "If you want to save the results you should redirect stdout to a file."
echo ""
echo " -o : change the order in which the tests are performed so that client"
@@ -71,7 +71,7 @@ if [ "$opt_o" = "true" ]; then
clients=$minClients
while [ ! $clients -gt $maxClients ]; do
test -f pretest.sh && ./pretest.sh > /dev/null 2>&1
- vespa-fbench -n $clients -c $cycle $@ | vespa-resultfilter.pl
+ vespa-fbench -n $clients -c $cycle $@ | vespa-fbench-result-filter.pl
clients=$(($clients + $deltaClients))
done
[ "$opt_l" = "true" ] && echo ""
@@ -83,7 +83,7 @@ else
cycle=$minCycle
while [ ! $cycle -gt $maxCycle ]; do
test -f pretest.sh && ./pretest.sh > /dev/null 2>&1
- vespa-fbench -n $clients -c $cycle $@ | vespa-resultfilter.pl
+ vespa-fbench -n $clients -c $cycle $@ | vespa-fbench-result-filter.pl
cycle=$(($cycle + $deltaCycle))
done
[ "$opt_l" = "true" ] && echo ""