summaryrefslogtreecommitdiff
path: root/runbenchmarks.sh
diff options
context:
space:
mode:
Diffstat (limited to 'runbenchmarks.sh')
-rwxr-xr-xrunbenchmarks.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/runbenchmarks.sh b/runbenchmarks.sh
index e0304fb..ff75a2a 100755
--- a/runbenchmarks.sh
+++ b/runbenchmarks.sh
@@ -3,5 +3,7 @@
xmldocs=`cat xmldata/subset.txt`
for prog in ezxml goencxml mxml pyeletree.py sxmlc yxml; do
- ./measuretime ./$prog $xmldocs
+ for i in `seq 10`; do
+ ./measuretime.sh 2>&1 ./$prog $xmldocs > /dev/null | grep real >> $prog.log
+ done
done