diff options
author | JingLu5 <lvjing5@huawei.com> | 2016-08-16 20:13:17 +0800 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2016-08-17 08:34:05 +0800 |
commit | c14c8535beabe3599d541cb2c17f731e42d029f8 (patch) | |
tree | edf7af5348cc566583370bb318e07383b547b703 /tests/ci | |
parent | 8361073662d580803f1da030b9f9bd4203bbaecb (diff) |
BugFix: fix storperf deployment location error
Change-Id: Ib8329f6feeadacb312171782730ef2807eda5455
Signed-off-by: JingLu5 <lvjing5@huawei.com>
Diffstat (limited to 'tests/ci')
-rwxr-xr-x | tests/ci/yardstick-verify | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/tests/ci/yardstick-verify b/tests/ci/yardstick-verify index bdb91003d..7345e0e5b 100755 --- a/tests/ci/yardstick-verify +++ b/tests/ci/yardstick-verify @@ -133,8 +133,21 @@ install_storperf() exit 1 fi + fi +} + +remove_storperf() +{ + # remove Storper from huawei-pod1 + if [ "$NODE_NAME" == "huawei-pod1" ]; then echo - echo "========== Installed storperf container ==========" + echo "========== Removing storperf ==========" + + if ! yardstick -d plugin remove plugin/CI/storperf.yaml; then + echo "Remove storperf plugin FAILED"; + exit 1 + fi + fi } @@ -422,6 +435,7 @@ main() install_storperf run_test + remove_storperf } main |