summaryrefslogtreecommitdiffstats
path: root/tests/bugs/snapshot/bug-1164613.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/snapshot/bug-1164613.t')
-rw-r--r--tests/bugs/snapshot/bug-1164613.t34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/bugs/snapshot/bug-1164613.t b/tests/bugs/snapshot/bug-1164613.t
new file mode 100644
index 00000000000..9cf122bc4b8
--- /dev/null
+++ b/tests/bugs/snapshot/bug-1164613.t
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+. $(dirname $0)/../../include.rc
+. $(dirname $0)/../../snapshot.rc
+
+cleanup;
+TEST verify_lvm_version;
+TEST glusterd;
+TEST pidof glusterd;
+
+TEST setup_lvm 1
+
+TEST $CLI volume create $V0 $H0:$L1
+TEST $CLI volume start $V0
+TEST glusterfs -s $H0 --volfile-id=$V0 $M0
+
+TEST touch $M0/testfile
+
+TEST $CLI snapshot create snaps $V0
+TEST $CLI snapshot activate snaps
+TEST $CLI volume set $V0 features.uss enable
+TEST $CLI volume set $V0 snapshot-directory snaps
+
+EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/snaps/snaps/testfile
+
+umount -f $M0
+
+#Clean up
+TEST $CLI snapshot delete snaps
+TEST $CLI volume stop $V0 force
+TEST $CLI volume delete $V0
+
+cleanup;
+