From 34fb580d2a2df0a3e41bc45865a6dfb35bdc9244 Mon Sep 17 00:00:00 2001 From: boucherv Date: Thu, 29 Oct 2015 17:14:07 +0100 Subject: Add vIMS test-case in run_tests script JIRA: FUNCTEST-38 Change-Id: I3e4b640f094286a9b4b8debbbae4700c12c0fdc6 Signed-off-by: boucherv --- docker/run_tests.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'docker') diff --git a/docker/run_tests.sh b/docker/run_tests.sh index 7c289719..2a523ed3 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -28,7 +28,7 @@ examples: # Support for Functest offline # NOTE: Still not 100% working when running the tests offline=false -arr_test=(vping odl rally tempest) +arr_test=(vping odl rally tempest vims) function run_test(){ @@ -64,10 +64,6 @@ function run_test(){ cp -Rf ${odl_logs} ${FUNCTEST_CONF_DIR}/ODL/ fi ;; - "rally") - info "Running Rally benchmark suite..." - python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_rally.py --debug ${FUNCTEST_REPO_DIR}/ all - ;; "tempest") info "Running Tempest smoke tests..." rally verify start smoke @@ -78,6 +74,14 @@ function run_test(){ cp $tempest_conf ${FUNCTEST_CONF_DIR} fi ;; + "vims") + info "Running vIMS test..." + python ${FUNCTEST_REPO_DIR}/testcases/vIMS/CI/vIMS.py --debug ${FUNCTEST_REPO_DIR}/ + ;; + "rally") + info "Running Rally benchmark suite..." + python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_rally.py --debug ${FUNCTEST_REPO_DIR}/ all + ;; esac } -- cgit 1.2.3-korg