diff options
Diffstat (limited to 'tests/snapshot.rc')
-rwxr-xr-x | tests/snapshot.rc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/snapshot.rc b/tests/snapshot.rc index 37c250344f1..a208fa3d410 100755 --- a/tests/snapshot.rc +++ b/tests/snapshot.rc @@ -286,6 +286,19 @@ function snapshot_n_exists() { return $ret } +#Check for the status of snapshot for a volume +#Arg1 : <Snap Name> +function snapshot_status() +{ + local snap=$1; + + #TODO: Right now just fetches the status of the single snap volume. + #When snapshot will have multiple snap volumes, should have a + #cummulative logic for status + $CLI_1 snapshot info $snap | grep "Status" | sed 's/.*: //'; +} + + # TODO: Cleanup code duplication function volinfo_field() { |