From patchwork Tue Sep 29 20:04:24 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Goldish X-Patchwork-Id: 50590 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8TK8EXC029636 for ; Tue, 29 Sep 2009 20:08:14 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753893AbZI2UIH (ORCPT ); Tue, 29 Sep 2009 16:08:07 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752068AbZI2UIF (ORCPT ); Tue, 29 Sep 2009 16:08:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49902 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752901AbZI2UIB (ORCPT ); Tue, 29 Sep 2009 16:08:01 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8TK85Cs022445; Tue, 29 Sep 2009 16:08:05 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n8TK84Wx006646; Tue, 29 Sep 2009 16:08:05 -0400 Received: from localhost.localdomain (dhcp-1-188.tlv.redhat.com [10.35.1.188]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n8TK80NX003847; Tue, 29 Sep 2009 16:08:03 -0400 From: Michael Goldish To: autotest@test.kernel.org, kvm@vger.kernel.org Cc: Michael Goldish Subject: [KVM-AUTOTEST PATCH 3/6] KVM test: kvm_vm.py: change qemu-img timeout to 120 seconds Date: Tue, 29 Sep 2009 22:04:24 +0200 Message-Id: <1254254667-19385-3-git-send-email-mgoldish@redhat.com> In-Reply-To: <1254254667-19385-2-git-send-email-mgoldish@redhat.com> References: <1254254667-19385-1-git-send-email-mgoldish@redhat.com> <1254254667-19385-2-git-send-email-mgoldish@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py index 07ceb6d..ff6c044 100755 --- a/client/tests/kvm/kvm_vm.py +++ b/client/tests/kvm/kvm_vm.py @@ -55,7 +55,7 @@ def create_image(params, root_dir): logging.debug("Running qemu-img command:\n%s" % qemu_img_cmd) (status, output) = kvm_subprocess.run_fg(qemu_img_cmd, logging.debug, - "(qemu-img) ", timeout=30) + "(qemu-img) ", timeout=120) if status is None: logging.error("Timeout elapsed while waiting for qemu-img command "