diff options
Diffstat (limited to 'testcases')
-rwxr-xr-x | testcases/Controllers/ODL/OpenDaylightTesting.py | 9 | ||||
-rwxr-xr-x | testcases/features/sfc/sfc.py | 2 | ||||
-rwxr-xr-x | testcases/features/sfc/sfc_colorado1.py | 12 |
3 files changed, 17 insertions, 6 deletions
diff --git a/testcases/Controllers/ODL/OpenDaylightTesting.py b/testcases/Controllers/ODL/OpenDaylightTesting.py index e302b569e..c44be626c 100755 --- a/testcases/Controllers/ODL/OpenDaylightTesting.py +++ b/testcases/Controllers/ODL/OpenDaylightTesting.py @@ -1,4 +1,11 @@ -#!/usr/bin/python +#!/usr/bin/env python + +# Copyright (c) 2016 Orange and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 import argparse import errno diff --git a/testcases/features/sfc/sfc.py b/testcases/features/sfc/sfc.py index 72b4e00cb..122ed5d9d 100755 --- a/testcases/features/sfc/sfc.py +++ b/testcases/features/sfc/sfc.py @@ -208,7 +208,7 @@ def main(): # STARTING SECOND VM (server) ### # boot INTANCE - logger.info("Creating instance '%s'..." % INSTANCE_NAME) + logger.info("Creating instance '%s'..." % INSTANCE_NAME_2) logger.debug( "Configuration:\n name=%s \n flavor=%s \n image=%s \n " "network=%s \n" % (INSTANCE_NAME_2, FLAVOR, image_id, network_id)) diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py index ef3a489cf..a9c397e68 100755 --- a/testcases/features/sfc/sfc_colorado1.py +++ b/testcases/features/sfc/sfc_colorado1.py @@ -215,7 +215,7 @@ def main(): # STARTING SECOND VM (server) ### # boot INTANCE - logger.info("Creating instance '%s'..." % INSTANCE_NAME) + logger.info("Creating instance '%s'..." % INSTANCE_NAME_2) logger.debug( "Configuration:\n name=%s \n flavor=%s \n image=%s \n " "network=%s \n" % (INSTANCE_NAME_2, FLAVOR, image_id, network_id)) @@ -500,10 +500,14 @@ def main(): " :) \n" + '\033[0m') break else: - logger.debug("Iterating again!") + logger.info("Iterating again!") delete = ("bash delete.sh") - subprocess.call(delete, shell=True, stderr=subprocess.PIPE) - time.sleep(10) + try: + subprocess.call(delete, shell=True, stderr=subprocess.PIPE) + time.sleep(10) + except Exception, e: + logger.error("Problem when executing the delete.sh") + logger.error("Problem %s" % e) if args.report: stop_time = time.time() |