summaryrefslogtreecommitdiffstats
path: root/234/regr/testcase
diff options
context:
space:
mode:
authorVijay Bellur <vijay@gluster.com>2011-03-07 10:03:15 +0530
committerVijay Bellur <vijay@gluster.com>2011-03-07 10:04:24 +0530
commit914f0aef201b0b3b5709460c9da0262244f280aa (patch)
tree5fe36ab4ce8dd01c78228a0f262f2cbcabcf455a /234/regr/testcase
parente460b7a3d828ab43a6fd9d4abdb96109661d30b1 (diff)
moved old files to legacy
Signed-off by: Raghavendra Bhat <raghavendrabhat@gluster.com>
Diffstat (limited to '234/regr/testcase')
-rwxr-xr-x234/regr/testcase36
1 files changed, 0 insertions, 36 deletions
diff --git a/234/regr/testcase b/234/regr/testcase
deleted file mode 100755
index 96987b5..0000000
--- a/234/regr/testcase
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-description="# opendir system call on a symbolic link to a directory fails"
-comments="# When opendir() system call is executed on a symbolic link to a directory, it gives an error"
-
-source ../../init
-
-start_glusterfs --no-clients
-
-sleep 5
-
-gcc $SPECDIR/open_dir.c -o $SPECDIR/opendir
-
-mkdir $EXPORTDIR/export1/imp/
-ln -s $EXPORTDIR/export1/imp/ $EXPORTDIR/export1/link
-
-echo "$SPECDIR/client1.vol $MOUNTDIR/client1 glusterfs subvolume=client,logfile=$LOGDIR/clog,loglevel=DEBUG" > $SPECDIR/booster.conf
-export GLUSTERFS_BOOSTER_FSTAB=$SPECDIR/booster.conf
-export LD_PRELOAD=$(dirname $GLUSTERFSDIR)/lib/glusterfs/glusterfs-booster.so
-
-$SPECDIR/opendir $MOUNTDIR/client1/imp
-$SPECDIR/opendir $MOUNTDIR/client1/link
-
-if [ $? -ne 0 ]; then
- not_ok $description
- comment $comments
-else
- ok $description
- comment $comments
-fi
-
-rm $SPECDIR/opendir $SPECDIR/booster.conf
-GLUSTERFS_BOOSTER_FSTAB=
-LD_PRELOAD=
-
-cleanup_glusterfs \ No newline at end of file