From b965f0c5115467e3bd863d61f91246b62b36803e Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Mon, 21 Dec 2015 15:34:26 +0100 Subject: Script to check the basic OpenStack services JIRA: FUNCTEST-118 Change-Id: I92372bc098c48e406e69a91c4d754e8c1e4388a6 Signed-off-by: jose.lausuch --- docker/run_tests.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'docker') diff --git a/docker/run_tests.sh b/docker/run_tests.sh index c75110b3d..00d534871 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -175,6 +175,13 @@ fi info "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the tests.." source ${FUNCTEST_CONF_DIR}/openstack.creds +# Check OpenStack +info "Checking that the basic OpenStack services are functional..." +${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/check_os.sh +RETVAL=$? +if [ $RETVAL -ne 0 ]; then + exit 1 +fi # Run tests if [ "${TEST}" != "" ]; then -- cgit 1.2.3-korg