summaryrefslogtreecommitdiffstats
path: root/run.sh
diff options
context:
space:
mode:
authorVijay Bellur <vijay@gluster.com>2009-11-01 23:28:10 +0530
committerVijay Bellur <vijay@gluster.com>2009-11-01 23:28:10 +0530
commit39b438a23bc3477a20ad2497fb0e8e64b566bbf1 (patch)
tree626af5e6e50c128463674893ae1db75d8764ed76 /run.sh
parent349d271983db33e735451056db97a165140c809c (diff)
Use path-to-glusterfs as argument instead of version
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