blob: 27a688d35383a5aea56690f686efaf85c8384f7d (
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
|
#!/bin/bash
. $(dirname $0)/../include.rc
. $(dirname $0)/../volume.rc
cleanup;
TEST glusterd
TEST pidof glusterd
TEST $CLI volume info;
TEST $CLI volume create $V0 replica 3 $H0:$B0/${V0}{1,2,3,4,5,6};
EXPECT "$V0" volinfo_field $V0 'Volume Name';
EXPECT 'Created' volinfo_field $V0 'Status';
EXPECT '6' brick_count $V0
TEST $CLI volume start $V0;
EXPECT 'Started' volinfo_field $V0 'Status';
file="/var/lib/glusterd/vols/$V0/trusted-$V0.tcp-fuse.vol"
sed -i -e 's$send-gids true$send-gids true\n option testing.old-protocol true$g' $file
## Mount FUSE
TEST $GFS -s $H0 --volfile-id $V0 $M1;
## TODO: best way to increase coverage is to have a gfapi program
## which covers maximum fops
TEST $(dirname $0)/rpc-coverage.sh $M1
cleanup;
|