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 3501610CA7 for ; Fri, 28 Jun 2013 19:22:30 +0000 (UTC) Received: (qmail 98517 invoked by uid 500); 28 Jun 2013 19:22:23 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 98459 invoked by uid 500); 28 Jun 2013 19:22:23 -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 98225 invoked by uid 99); 28 Jun 2013 19:22:23 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Jun 2013 19:22:23 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 5C7EF3AB80; Fri, 28 Jun 2013 19:22:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tsp@apache.org To: commits@cloudstack.apache.org Date: Fri, 28 Jun 2013 19:22:48 -0000 Message-Id: <4c800b28b9444a92877b4a5664f38bc8@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [27/29] git commit: updated refs/heads/master-6-17-stable to 93712c2 cmds is not a list. just regular string to ssh Signed-off-by: Prasanna Santhanam (cherry picked from commit 2af6db24ed35a95b5bb9493003b241617b5d7835) Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/012a2d2d Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/012a2d2d Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/012a2d2d Branch: refs/heads/master-6-17-stable Commit: 012a2d2d426efc9fc3f22f51dbb7572d82a8abfd Parents: 7bad732 Author: Prasanna Santhanam Authored: Tue Jun 25 19:39:15 2013 +0530 Committer: Prasanna Santhanam Committed: Sat Jun 29 00:52:09 2013 +0530 ---------------------------------------------------------------------- test/integration/smoke/test_vm_life_cycle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/012a2d2d/test/integration/smoke/test_vm_life_cycle.py ---------------------------------------------------------------------- diff --git a/test/integration/smoke/test_vm_life_cycle.py b/test/integration/smoke/test_vm_life_cycle.py index b54182e..c2c2592 100644 --- a/test/integration/smoke/test_vm_life_cycle.py +++ b/test/integration/smoke/test_vm_life_cycle.py @@ -747,7 +747,7 @@ class TestVMLifeCycle(cloudstackTestCase): self.fail("SSH failed for virtual machine: %s - %s" % (self.virtual_machine.ipaddress, e)) - cmds = [ "mkdir -p %s" % self.services["mount_dir"] ] + cmds = "mkdir -p %s" % self.services["mount_dir"] self.assert_(ssh_client.execute(cmds) == [], "mkdir failed within guest") for diskdevice in self.services["diskdevice"]: