diff options
Diffstat (limited to 'testcases/features')
-rwxr-xr-x | testcases/features/sfc/sfc.py | 2 | ||||
-rwxr-xr-x | testcases/features/sfc/sfc_colorado1.py | 12 |
2 files changed, 9 insertions, 5 deletions
diff --git a/testcases/features/sfc/sfc.py b/testcases/features/sfc/sfc.py index 8905b5607..8fd68bc3f 100755 --- a/testcases/features/sfc/sfc.py +++ b/testcases/features/sfc/sfc.py @@ -209,7 +209,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, FLAVOR, image_id, network_id)) diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py index 28b8c35dd..a1cf8a871 100755 --- a/testcases/features/sfc/sfc_colorado1.py +++ b/testcases/features/sfc/sfc_colorado1.py @@ -216,7 +216,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, FLAVOR, image_id, network_id)) @@ -521,10 +521,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() |