summaryrefslogtreecommitdiff
path: root/runbenchmarks.sh
diff options
context:
space:
mode:
Diffstat (limited to 'runbenchmarks.sh')
-rwxr-xr-xrunbenchmarks.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/runbenchmarks.sh b/runbenchmarks.sh
index d4c5c13..19bcca7 100755
--- a/runbenchmarks.sh
+++ b/runbenchmarks.sh
@@ -6,4 +6,8 @@ for prog in ezxml goencxml mxml pyeletree.py sxmlc yxml; do
for i in `seq 10`; do
./measuretime.sh 2>&1 ./$prog $xmldocs > /dev/null | grep real | sed 's/real//g;s/s//g' >> $prog.log
done
+
+ ./converttimes.sh $prog.log
+ R -q -e "x <- read.csv(\"$prog.log.converted\", header = F); summary(x); sd(x[ , 1])" > $prog.statistics
+
done