diff options
author | Krishnan Parthasarathi <kparthas@redhat.com> | 2013-04-19 13:02:39 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-04-19 01:55:36 -0700 |
commit | 1fc9b98a4eb6eda8db30940a8bb07d206e2fa049 (patch) | |
tree | d74345d893fc40ee5d0d65a4214add1d20139ca1 /tests/volume.rc | |
parent | 9d74f78141b681faf9d60456d00c73d2905f2735 (diff) |
tests: Fix volume-status test script
* The functions now return the aggregated return value instead of just echoing it.
* Fixed the shd test loop to use the proper variable
* Added 'wait's for nfs and shd services to come online.
BUG: 764966
Change-Id: Iedbb5be0d5e50108ed4847d58625ccb093c22251
Original-author: Kaushal M <kaushal@redhat.com>
Signed-off-by: Krishnan Parthasarathi <kparthas@redhat.com>
Reviewed-on: http://review.gluster.org/4856
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'tests/volume.rc')
-rw-r--r-- | tests/volume.rc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/volume.rc b/tests/volume.rc index 5b7a38f77e3..54b6173c519 100644 --- a/tests/volume.rc +++ b/tests/volume.rc @@ -119,6 +119,10 @@ function afr_child_up_status_in_shd { _afr_child_up_status $vol $brick_id generate_shd_statedump } +function nfs_up_status { + gluster volume status | grep "NFS Server" | awk '{print $6}' +} + function glustershd_up_status { gluster volume status | grep "Self-heal Daemon" | awk '{print $6}' } |