From patchwork Fri Sep 21 09:31:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jiri Zupka X-Patchwork-Id: 1490811 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 90CD03FE65 for ; Fri, 21 Sep 2012 09:33:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932742Ab2IUJdU (ORCPT ); Fri, 21 Sep 2012 05:33:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:9504 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932609Ab2IUJcH (ORCPT ); Fri, 21 Sep 2012 05:32:07 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q8L9Vkhv032344 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 21 Sep 2012 05:31:46 -0400 Received: from jzupka-pc.local.com (dhcp-27-230.brq.redhat.com [10.34.27.230]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q8L9VYhu005668; Fri, 21 Sep 2012 05:31:45 -0400 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=BDupka?= To: autotest@test.kernel.org, kvm@vger.kernel.org, kvm-autotest@redhat.com, lmr@redhat.com, ldoktor@redhat.com, jzupka@redhat.com Subject: [Autotest][PATCH 5/5] virt: Repair import path. Date: Fri, 21 Sep 2012 11:31:28 +0200 Message-Id: <1348219888-23436-6-git-send-email-jzupka@redhat.com> In-Reply-To: <1348219888-23436-1-git-send-email-jzupka@redhat.com> References: <1348219888-23436-1-git-send-email-jzupka@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: Ji?í Župka --- client/tests/virt/kvm/control.parallel | 2 +- client/tests/virt/virttest/libvirt_xml.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/tests/virt/kvm/control.parallel b/client/tests/virt/kvm/control.parallel index a33365b..70806c0 100644 --- a/client/tests/virt/kvm/control.parallel +++ b/client/tests/virt/kvm/control.parallel @@ -174,7 +174,7 @@ tests = list(parser.get_dicts()) # ------------- # Run the tests # ------------- -from autotest.client.virt import scheduler +from autotest.client.tests.virt.virttest import scheduler from autotest.client import utils # total_cpus defaults to the number of CPUs reported by /proc/cpuinfo diff --git a/client/tests/virt/virttest/libvirt_xml.py b/client/tests/virt/virttest/libvirt_xml.py index 79fe87a..992bfc2 100644 --- a/client/tests/virt/virttest/libvirt_xml.py +++ b/client/tests/virt/virttest/libvirt_xml.py @@ -11,7 +11,7 @@ import logging, os.path from autotest.client.shared import error, xml_utils -from autotest.client.virt import libvirt_vm, virsh +from virttest import libvirt_vm, virsh class LibvirtXMLError(Exception):