diff options
author | Amar Tumballi <amarts@redhat.com> | 2018-02-01 22:56:09 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-02-01 23:19:01 +0530 |
commit | 641e5be8d1bcbb5161487eeb84229eed5ee5c31b (patch) | |
tree | c48e7290b2ee6fb7302682f1fb04e27620a1f61e /tests/basic | |
parent | 0e6e8216823c2d9dafb81aae0f6ee3497c23d140 (diff) |
sdfs: crash fixes
* from the patch which got tested in experimental branch, there
was a code cleanup involved, which missed setting of a local
variable, which led to crash immediately after enabling the
feature.
* added a sanity test case to validate all the fops of sdfs.
Updates: #397
Change-Id: I7e0bebfc195c344620577cb16c1afc5f4e7d2d92
Signed-off-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'tests/basic')
-rw-r--r-- | tests/basic/sdfs-sanity.t | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/basic/sdfs-sanity.t b/tests/basic/sdfs-sanity.t new file mode 100644 index 00000000000..f25376c3cad --- /dev/null +++ b/tests/basic/sdfs-sanity.t @@ -0,0 +1,22 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc + +cleanup; + +TEST glusterd +TEST pidof glusterd + +TEST $CLI volume create $V0 replica 3 $H0:$B0/${V0}{1,2,3,4,5,6,7,8,9}; +TEST $CLI volume set $V0 features.sdfs enable; +TEST $CLI volume start $V0; + +## Mount FUSE +TEST $GFS -s $H0 --volfile-id $V0 $M1; + +# This test covers lookup, mkdir, mknod, symlink, link, rename, +# create operations +TEST $(dirname $0)/rpc-coverage.sh $M1 + +cleanup; |