summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-877885.t
blob: 0d4620b0092b5d06118eed628d39ea4dbb39fb1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/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