first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / core / applications / nechung / test_nechung.sh
1 #!/bin/bash
2
3 # prints out the time it takes to run the nechung oracle a thousand times.
4 # the number of seconds in the result should be equivalent to the number of
5 # milliseconds that nechung takes to run and produce a fortune, on average.
6
7 export i=0
8
9 mdate
10 while [ $i -le 1000 ]; do
11 #  echo $i
12   nechung >/dev/null
13   let i++
14 done
15 mdate