summaryrefslogtreecommitdiffstats
path: root/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/run.sh b/run.sh
index 3b990f6..354909b 100755
--- a/run.sh
+++ b/run.sh
@@ -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