Add run-benchmark script

This commit is contained in:
c9s 2014-06-04 19:55:23 +08:00
parent a7a3621cfe
commit a1afa303f2

6
run-benchmark Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
i=10
while [ $i -gt 0 ] ; do
bash tests/bench
i=$(($i - 1))
done