diff options
Diffstat (limited to 'tests/bugs/glusterfs/bug-811493.t')
-rwxr-xr-x | tests/bugs/glusterfs/bug-811493.t | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs/glusterfs/bug-811493.t b/tests/bugs/glusterfs/bug-811493.t new file mode 100755 index 00000000000..98f7c121a02 --- /dev/null +++ b/tests/bugs/glusterfs/bug-811493.t @@ -0,0 +1,18 @@ +#!/bin/bash + +. $(dirname $0)/../../include.rc + +cleanup; + +TEST glusterd +TEST pidof glusterd +TEST $CLI system uuid reset; + +uuid1=$(grep UUID $GLUSTERD_WORKDIR/glusterd.info | cut -f 2 -d "="); + +TEST $CLI system uuid reset; +uuid2=$(grep UUID $GLUSTERD_WORKDIR/glusterd.info | cut -f 2 -d "="); + +TEST [ $uuid1 != $uuid2 ] + +cleanup |