From 249f853484f88f59bfeb2ccd114206c1ccd77bb8 Mon Sep 17 00:00:00 2001 From: Ashutosh K Date: Sat, 16 Nov 2013 14:57:59 +0530 Subject: [PATCH] CLOUDSTACK-5185: test_egress_fw_rules - failed the test case if vm deployment failed instead of going on executing rest --- test/integration/component/test_egress_fw_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/component/test_egress_fw_rules.py b/test/integration/component/test_egress_fw_rules.py index 0aed95742ec..56ac3661c20 100644 --- a/test/integration/component/test_egress_fw_rules.py +++ b/test/integration/component/test_egress_fw_rules.py @@ -214,7 +214,7 @@ class TestEgressFWRules(cloudstackTestCase): networkids=[str(self.network.id)], projectid=project.id if project else None) except Exception as e: - self.debug('error=%s' % e) + self.fail("Virtual machine deployment failed with exception: %s" % e) self.debug("Deployed instance in account: %s" % self.account.name) def exec_script_on_user_vm(self, script, exec_cmd_params, expected_result, negative_test=False):