summaryrefslogtreecommitdiffstats
path: root/tests/basic/ec/nfs.t
blob: 16e88c1460bc2c6658605fb422cfde165b523282 (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
#!/bin/bash

. $(dirname $0)/../../include.rc
. $(dirname $0)/../../nfs.rc

cleanup

TEST glusterd
TEST pidof glusterd
TEST $CLI volume create $V0 redundancy 2 $H0:$B0/${V0}{0..5}
EXPECT "Created" volinfo_field $V0 'Status'
TEST $CLI volume start $V0
EXPECT_WITHIN $PROCESS_UP_TIMEOUT "Started" volinfo_field $V0 'Status'

EXPECT_WITHIN $NFS_EXPORT_TIMEOUT "1" is_nfs_export_available;
TEST mount_nfs $H0:/$V0 $N0 nolock

# The test below fails with "bs=1024k count=1k", but passes when "oflag=direct"
# is used. There also does not seem to be an issue on systems with sufficient
# memory. Reducing the "count" prevents hangs too.
TEST dd if=/dev/zero of=$N0/test bs=1024k count=32

## Before killing daemon to avoid deadlocks
EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" umount_nfs $N0

cleanup