blob: c3090dae5a852ab76cdf8dd1baf2810746a9f900 (
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
|
#!/bin/bash
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc
cleanup;
TEST mkdir -p $B0/single-brick
cat > $B0/template.vol <<EOF
volume posix
type storage/posix
option directory $B0/single-brick
end-volume
volume template
type playground/template
subvolumes posix
end-volume
EOF
TEST glusterfs -f $B0/template.vol $M0
TEST $(dirname $0)/../rpc-coverage.sh --no-locks $M0
EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0
cleanup;
|