summaryrefslogtreecommitdiffstats
path: root/tests/bugs/glusterd/bug-916549.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/glusterd/bug-916549.t')
-rwxr-xr-xtests/bugs/glusterd/bug-916549.t19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/bugs/glusterd/bug-916549.t b/tests/bugs/glusterd/bug-916549.t
new file mode 100755
index 00000000000..bedbdd60bb6
--- /dev/null
+++ b/tests/bugs/glusterd/bug-916549.t
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+. $(dirname $0)/../../include.rc
+
+cleanup;
+
+TEST glusterd;
+TEST $CLI volume create $V0 $H0:$B0/${V0}1;
+TEST $CLI volume start $V0;
+
+pid_file=$(ls $GLUSTERD_WORKDIR/vols/$V0/run);
+brick_pid=$(cat $GLUSTERD_WORKDIR/vols/$V0/run/$pid_file);
+
+
+kill -SIGKILL $brick_pid;
+TEST $CLI volume start $V0 force;
+TEST process_leak_count $(pidof glusterd);
+
+cleanup;