diff options
| -rwxr-xr-x | run.sh | 8 | 
1 files changed, 4 insertions, 4 deletions
@@ -1,13 +1,13 @@  #!/bin/sh -VERSION=$1 +GLUSTERFS=$1  OLDDIR=`pwd`  for i in `ls | grep "^[0-9]*$"`  do -   cd $i -   if [ -f ./regr/testcase ];then	 -   	./regr/testcase $VERSION +   cd $i/regr +   if [ -f ./testcase ];then	 +   	./testcase $GLUSTERFS     fi     cd $OLDDIR  done  | 
