You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ga...@apache.org on 2015/05/29 11:46:30 UTC

git commit: updated refs/heads/master to 900b656

Repository: cloudstack
Updated Branches:
  refs/heads/master b267c5fc5 -> 900b656d1


CLOUDSTACK-8527: Skipping VPC tests on HyperV

Signed-off-by: Gaurav Aradhye <ga...@clogeny.com>
This closes #326


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/900b656d
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/900b656d
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/900b656d

Branch: refs/heads/master
Commit: 900b656d1295b94a4664018dd018e0c2d85d7b44
Parents: b267c5f
Author: Gaurav Aradhye <ga...@clogeny.com>
Authored: Fri May 29 15:13:28 2015 +0530
Committer: Gaurav Aradhye <ga...@clogeny.com>
Committed: Fri May 29 15:15:52 2015 +0530

----------------------------------------------------------------------
 test/integration/component/maint/test_dedicate_public_ip_range.py | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/900b656d/test/integration/component/maint/test_dedicate_public_ip_range.py
----------------------------------------------------------------------
diff --git a/test/integration/component/maint/test_dedicate_public_ip_range.py b/test/integration/component/maint/test_dedicate_public_ip_range.py
index 10b4a33..fe6b5d5 100644
--- a/test/integration/component/maint/test_dedicate_public_ip_range.py
+++ b/test/integration/component/maint/test_dedicate_public_ip_range.py
@@ -57,6 +57,7 @@ class TestDedicatePublicIPRange(cloudstackTestCase):
             cls).getClsTestClient()
         cls.apiclient = cls.testClient.getApiClient()
         cls.testdata = cls.testClient.getParsedTestDataConfig()
+        cls.hypervisor = cls.testClient.getHypervisorInfo()
         # Get Zone, Domain
         cls.domain = get_domain(cls.apiclient)
         cls.zone = get_zone(cls.apiclient, cls.testClient.getZoneForTests())
@@ -549,6 +550,8 @@ class TestDedicatePublicIPRange(cloudstackTestCase):
         # 9. Repeat step 6, this time the IP should not be from
              dedicated range, it should be from global pool
         """
+        if self.hypervisor.lower() in ["hyperv"]:
+            self.skipTest("Skipping test as VPC is not supported on HyperV")
         user_domain = Domain.create(
             self.apiclient,
             services=self.testdata["domain"],