summaryrefslogtreecommitdiffstats
path: root/tests/bugs/snapshot
diff options
context:
space:
mode:
authorAvra Sengupta <asengupt@redhat.com>2016-07-22 11:40:32 +0530
committerJeff Darcy <jdarcy@redhat.com>2016-07-27 15:07:23 -0700
commitec6925a379c7bee071df1638bc2751b266cee346 (patch)
tree4217b497c5a599395103ebdb5b46acc680bf9abe /tests/bugs/snapshot
parent4e1ad2c96ea692e49fb82ce533cdc26818277e8d (diff)
snapshot/snapd: Don't display pid when snapd is offline
We were previously reading the pidfile, and displaying the pid even if snapd daemon is not running. Now to fix it, we re-assign pid value to -1, if snapd is offline. Change-Id: I4baff8d489fe9380061c52aea006db90fa421cd7 BUG: 1358244 Signed-off-by: Avra Sengupta <asengupt@redhat.com> Reviewed-on: http://review.gluster.org/14981 Tested-by: Vijay Bellur <vbellur@redhat.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Smoke: Gluster Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.org> Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'tests/bugs/snapshot')
-rwxr-xr-x[-rw-r--r--]tests/bugs/snapshot/bug-1111041.t6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs/snapshot/bug-1111041.t b/tests/bugs/snapshot/bug-1111041.t
index 9188880912c..f771d64f2a3 100644..100755
--- a/tests/bugs/snapshot/bug-1111041.t
+++ b/tests/bugs/snapshot/bug-1111041.t
@@ -29,4 +29,10 @@ SNAPD_PID=$($CLI volume status $V0 | grep "Snapshot Daemon" | awk {'print $8'});
TEST [ $SNAPD_PID -gt 0 ]
+kill -9 $SNAPD_PID
+
+SNAPD_PID=$($CLI volume status $V0 | grep "Snapshot Daemon" | awk {'print $8'});
+
+TEST [ $SNAPD_PID = 'N/A' ]
+
cleanup ;