Added fix for CLOUDSTACK-6389

Added changes for CLOUDSTACK-6389.
More details in the bug.

Signed-off-by: Santhosh Edukulla <Santhosh.Edukulla@citrix.com>
Signed-off-by: SrikanteswaraRao Talluri <talluri@apache.org>
(cherry picked from commit cfa783fef2)
This commit is contained in:
Santhosh Edukulla 2014-04-18 22:07:35 +05:30 committed by Daan Hoogland
parent 3e240d1a00
commit f0f2071112
1 changed files with 0 additions and 15 deletions

View File

@ -133,8 +133,6 @@ class TestNic(cloudstackTestCase):
def setUp(self):
self.cleanup = []
self.cleaning_up = 0
def signal_handler(signal, frame):
self.tearDown()
sys.exit(0)
@ -152,9 +150,6 @@ class TestNic(cloudstackTestCase):
zone = get_zone(self.apiclient, self.services)
self.services['mode'] = zone.networktype
if zone.networktype != 'Advanced':
self.skipTest("Cannot run this test with a basic zone, please use advanced!")
#if local storage is enabled, alter the offerings to use localstorage
#this step is needed for devcloud
if zone.localstorageenabled == True:
@ -365,14 +360,6 @@ class TestNic(cloudstackTestCase):
self.assertEqual(True, False, "Exception during NIC test!: " + str(ex))
def tearDown(self):
if self.services['mode'] != 'Advanced':
self.debug("Cannot run this test with a basic zone, please use advanced!")
return
if self.cleaning_up == 1:
return
self.cleaning_up = 1
try:
for obj in self.cleanup:
try:
@ -380,8 +367,6 @@ class TestNic(cloudstackTestCase):
time.sleep(10)
except Exception as ex:
self.debug("Error deleting: " + str(obj) + ", exception: " + str(ex))
except Exception as e:
self.debug("Warning! Exception in tearDown: %s" % e)
self.cleaning_up = 0