blob: 5076e3612ac11e5dee5685dd7d34aa69b3599db1 (
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
|
#!/bin/bash
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc
cleanup;
TEST glusterd
TEST $CLI volume create $V0 $H0:$B0/$V0
TEST $CLI volume start $V0
TEST $CLI volume set $V0 cache-swift-metadata on
EXPECT 'on' volinfo_field $V0 'performance.cache-swift-metadata'
TEST $CLI volume set $V0 cache-swift-metadata off
EXPECT 'off' volinfo_field $V0 'performance.cache-swift-metadata'
TEST $CLI volume set $V0 performance.cache-capability-xattrs off
EXPECT 'off' volinfo_field $V0 'performance.cache-capability-xattrs'
TEST $CLI volume set $V0 performance.cache-capability-xattrs on
EXPECT 'on' volinfo_field $V0 'performance.cache-capability-xattrs'
TEST $CLI volume set $V0 performance.cache-ima-xattrs off
EXPECT 'off' volinfo_field $V0 'performance.cache-ima-xattrs'
TEST $CLI volume set $V0 performance.cache-ima-xattrs on
EXPECT 'on' volinfo_field $V0 'performance.cache-ima-xattrs'
TEST $CLI volume stop $V0
TEST $CLI volume delete $V0
cleanup;
|