From cfc0e12432163a27c6d3f4f4658c06d27cb18e7d Mon Sep 17 00:00:00 2001 From: Chandan Purushothama Date: Thu, 16 Oct 2014 16:23:04 -0700 Subject: [PATCH] CLOUDSTACK-7745: Fixed the script 'test_ssvm.py' - Private IP of System VMs can change on systemVMs reboot Signed-off-by: SrikanteswaraRao Talluri --- test/integration/smoke/test_ssvm.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/test/integration/smoke/test_ssvm.py b/test/integration/smoke/test_ssvm.py index 0df0302e029..fc6abf76b86 100644 --- a/test/integration/smoke/test_ssvm.py +++ b/test/integration/smoke/test_ssvm.py @@ -817,12 +817,8 @@ class TestSSVMs(cloudstackTestCase): old_public_ip, "Check Public IP after reboot with that of before reboot" ) - - self.assertEqual( - ssvm_response.privateip, - old_private_ip, - "Check Private IP after reboot with that of before reboot" - ) + + # Private IP Address of System VMs are allowed to change after reboot - CLOUDSTACK-7745 # Wait for the agent to be up self.waitForSystemVMAgent(ssvm_response.name) @@ -915,11 +911,8 @@ class TestSSVMs(cloudstackTestCase): "Check Public IP after reboot with that of before reboot" ) - self.assertEqual( - cpvm_response.privateip, - old_private_ip, - "Check Private IP after reboot with that of before reboot" - ) + # Private IP Address of System VMs are allowed to change after reboot - CLOUDSTACK-7745 + # Wait for the agent to be up self.waitForSystemVMAgent(cpvm_response.name)