diff options
author | Niels de Vos <ndevos@redhat.com> | 2013-04-20 16:55:15 +0200 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-04-26 04:28:06 -0700 |
commit | e6b6d1235daa483384d2b0701561b8f3a85be583 (patch) | |
tree | 5d83225225cddba382c217f27b4a13526d0dc83f /tests/bugs/bug-764638.t | |
parent | 5e0116109e3c444b11adb9809c75b4da72e85457 (diff) |
cli: add a command 'gluster pool list [--xml]'
* unlike 'gluster peer status', which lists only info about peers,
this command lists localhost also in the list, so the sorted
output from all the nodes should match.
* made the output script friendly by keeping it one output per line.
Change-Id: I853656753b35c617debbcceecbb71c8d6dd3c334
BUG: 764638
Original-review: http://review.gluster.org/4221
Original-author: Amar Tumballi <amarts@redhat.com>
Signed-off-by: Niels de Vos <ndevos@redhat.com>
Reviewed-on: http://review.gluster.org/4862
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'tests/bugs/bug-764638.t')
-rw-r--r-- | tests/bugs/bug-764638.t | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs/bug-764638.t b/tests/bugs/bug-764638.t new file mode 100644 index 00000000000..81654652400 --- /dev/null +++ b/tests/bugs/bug-764638.t @@ -0,0 +1,13 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc + +cleanup; + +TEST glusterd +TEST pidof glusterd + +TEST $CLI pool list; +TEST $CLI pool list --xml; + +cleanup; |