summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-797171.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/bug-797171.t')
-rwxr-xr-xtests/bugs/bug-797171.t43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/bugs/bug-797171.t b/tests/bugs/bug-797171.t
new file mode 100755
index 000000000..d5603676b
--- /dev/null
+++ b/tests/bugs/bug-797171.t
@@ -0,0 +1,43 @@
+#!/bin/bash
+
+. $(dirname $0)/../include.rc
+
+cleanup;
+
+TEST glusterd
+TEST pidof glusterd
+TEST $CLI volume info;
+
+TEST $CLI volume create $V0 $H0:$B0/brick1;
+TEST $CLI volume set $V0 debug.trace marker;
+TEST $CLI volume set $V0 debug.log-history on
+
+TEST $CLI volume start $V0;
+
+sleep 1;
+TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id $V0 \
+$M0;
+
+sleep 5;
+
+touch $M0/{1..22};
+rm -f $M0/*;
+
+pid_file=$(ls /var/lib/glusterd/vols/$V0/run);
+brick_pid=$(cat /var/lib/glusterd/vols/$V0/run/$pid_file);
+
+mkdir /tmp/statedump_tmp/;
+echo "path=/tmp/statedump_tmp" > /tmp/glusterdump.options;
+echo "all=yes" >> /tmp/glusterdump.options;
+
+TEST $CLI volume statedump $V0 history;
+
+file_name=$(ls /tmp/statedump_tmp);
+TEST grep "xlator.debug.trace.history" /tmp/statedump_tmp/$file_name;
+
+TEST umount $M0
+
+rm -rf /tmp/statedump_tmp;
+rm -f /tmp/glusterdump.options;
+
+cleanup;