summaryrefslogtreecommitdiffstats
path: root/run.sh
blob: 3b990f6a5e8bafc5c92b3ef909cabda4969b9d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

VERSION=$1
OLDDIR=`pwd`

for i in `ls | grep "^[0-9]*$"`
do
   cd $i
   if [ -f ./regr/testcase ];then	
   	./regr/testcase $VERSION
   fi
   cd $OLDDIR
done