some tweaks to number of workers and workloads
[IRC.git] / Robust / src / Benchmarks / oooJava / runall
1 #!/bin/bash
2 CUR=`pwd`
3 for i in *
4 do
5 if [ -d "$i" ] ; then
6 echo ENTERING $i
7 cd $i
8 for p in run*
9 do
10 echo Running $p
11 for c in 1 2 3 4 5 6 7 8 9 10
12 do
13 ./$p
14 done
15 done
16 cd $CUR
17 fi
18 done