Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 49A2010617 for ; Mon, 10 Jun 2013 00:53:57 +0000 (UTC) Received: (qmail 56917 invoked by uid 500); 10 Jun 2013 00:53:51 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 56870 invoked by uid 500); 10 Jun 2013 00:53:51 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 56381 invoked by uid 99); 10 Jun 2013 00:53:51 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Jun 2013 00:53:51 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E4ACD8A20A2; Mon, 10 Jun 2013 00:53:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ahuang@apache.org To: commits@cloudstack.apache.org Date: Mon, 10 Jun 2013 00:54:17 -0000 Message-Id: <54df821927bc4ef5ad00fb5aaf3c7c6c@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [28/50] [abbrv] git commit: updated refs/heads/vmsync to aaa16af CLOUDSTACK-2889: Resize volume unsupported on vmware Skip the tests if the VM deploys on a VmWare host since we do not support resizing volumes on vmware (yet) Signed-off-by: Prasanna Santhanam Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/6208a512 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6208a512 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6208a512 Branch: refs/heads/vmsync Commit: 6208a51283bfdb401f76f042296c16304ee8f4e4 Parents: 4a14ea8 Author: Prasanna Santhanam Authored: Fri Jun 7 11:29:56 2013 +0530 Committer: Prasanna Santhanam Committed: Fri Jun 7 11:31:10 2013 +0530 ---------------------------------------------------------------------- test/integration/smoke/test_volumes.py | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6208a512/test/integration/smoke/test_volumes.py ---------------------------------------------------------------------- diff --git a/test/integration/smoke/test_volumes.py b/test/integration/smoke/test_volumes.py index d9c808a..7039c6f 100644 --- a/test/integration/smoke/test_volumes.py +++ b/test/integration/smoke/test_volumes.py @@ -591,6 +591,8 @@ class TestVolumes(cloudstackTestCase): if hosts[0].hypervisor == "XenServer": self.virtual_machine.stop(self.apiClient) + elif hosts[0].hypervisor.lower() == "vmware": + self.skipTest("Resize Volume is unsupported on VmWare") self.apiClient.resizeVolume(cmd) count = 0 @@ -638,6 +640,9 @@ class TestVolumes(cloudstackTestCase): if hosts[0].hypervisor == "XenServer": self.virtual_machine.stop(self.apiClient) + elif hosts[0].hypervisor.lower() == "vmware": + self.skipTest("Resize Volume is unsupported on VmWare") + self.debug("Resize Volume ID: %s" % self.volume.id) cmd = resizeVolume.resizeVolumeCmd()