diff options
Diffstat (limited to 'tests/bugs/bug-880898.t')
-rw-r--r-- | tests/bugs/bug-880898.t | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/bugs/bug-880898.t b/tests/bugs/bug-880898.t deleted file mode 100644 index a069d4a8ac1..00000000000 --- a/tests/bugs/bug-880898.t +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -. $(dirname $0)/../include.rc - -cleanup; - -TEST glusterd -TEST $CLI volume create $V0 replica 2 $H0:$B0/brick1 $H0:$B0/brick2 -TEST $CLI volume start $V0 -pkill glusterfs -uuid="" -for line in $(cat /var/lib/glusterd/glusterd.info) -do - if [[ $line == UUID* ]] - then - uuid=`echo $line | sed -r 's/^.{5}//'` - fi -done - -gluster volume heal $V0 info | grep "Status: self-heal-daemon is not running on $uuid"; -EXPECT "0" echo $? - -cleanup; |