projects
/
IRC.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
ff882eb10fe488f92a03aee04dc695006854a3d4
[IRC.git]
/
Robust
/
src
/
Benchmarks
/
oooJava
/
runall
1
#!/bin/bash
2
CUR=`pwd`
3
for i in *
4
do
5
echo ENTERING $i
6
cd $i
7
for p in run*
8
do
9
echo Running $p
10
for c in 1 2 3 4 5 6 7 8 9 10
11
do
12
./$p
13
done
14
done
15
cd $CUR
16
done