summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRaghavendra Bhat <raghavendra@redhat.com>2014-07-15 15:55:34 +0530
committerKaushal M <kaushal@redhat.com>2014-07-15 23:38:41 -0700
commitdcc1696045f12127ff37e6312a04c0024c8a4e24 (patch)
tree0c98cda316d9c121bae16af9275ca9cb3c5de9de /tests
parent52ca745fb79d36d7587a7913639520c90a121168 (diff)
mgmt/glusterd: do not check for snapd handle in restore if uss is disabled
Change-Id: I01afe64685a5794cce9265580c6c5de57a045201 BUG: 1119582 Signed-off-by: Raghavendra Bhat <raghavendra@redhat.com> Reviewed-on: http://review.gluster.org/8310 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Kaushal M <kaushal@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs/bug-1119582.t24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/bugs/bug-1119582.t b/tests/bugs/bug-1119582.t
new file mode 100644
index 00000000000..9251927e314
--- /dev/null
+++ b/tests/bugs/bug-1119582.t
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+. $(dirname $0)/../include.rc
+. $(dirname $0)/../volume.rc
+. $(dirname $0)/../fileio.rc
+. $(dirname $0)/../nfs.rc
+
+cleanup;
+
+TEST glusterd;
+
+TEST pidof glusterd;
+
+TEST $CLI volume create $V0 $H0:$B0/${V0}0 $H0:$B0/${V0}1
+
+TEST $CLI volume set $V0 features.uss disable;
+
+TEST killall glusterd;
+
+rm -f /var/lib/glusterd/vols/$V0/snapd.info
+
+TEST glusterd
+
+cleanup ;