summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-877885.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/bug-877885.t')
-rwxr-xr-xtests/bugs/bug-877885.t35
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/bugs/bug-877885.t b/tests/bugs/bug-877885.t
deleted file mode 100755
index 0d4620b0092..00000000000
--- a/tests/bugs/bug-877885.t
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-. $(dirname $0)/../include.rc
-
-cleanup;
-
-TEST glusterd
-TEST pidof glusterd
-TEST $CLI volume create $V0 replica 2 $H0:$B0/brick0 $H0:$B0/brick1
-TEST $CLI volume start $V0
-
-sleep 5
-
-## Mount FUSE with caching disabled
-TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id $V0 \
-$M0;
-
-TEST touch $M0/file
-TEST mkdir $M0/dir
-
-TEST mount -t nfs -o vers=3,nolock $H0:/$V0 $N0
-cd $N0
-
-rm -rf * &
-
-TEST mount -t nfs -o retry=0,nolock,vers=3 $H0:/$V0 $N1;
-
-cd;
-
-kill %1;
-
-TEST umount $N0
-TEST umount $N1;
-
-cleanup