From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Meneghel Rodrigues Subject: [PATCH] KVM test: nic_bonding: Introduce absolute namespace for test imports Date: Wed, 12 Jan 2011 14:15:45 -0200 Message-ID: <1294848945-8340-1-git-send-email-lmr@redhat.com> Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues To: autotest@test.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:36818 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750915Ab1ALQPu (ORCPT ); Wed, 12 Jan 2011 11:15:50 -0500 Sender: kvm-owner@vger.kernel.org List-ID: In order to avoid namespace collisions, turn the kvm test dir into a module and, whenever importing full tests, use the complete namespace. The full namespace might not be pretty, but it is certainly safer, specially executing from autoserv. Signed-off-by: Lucas Meneghel Rodrigues --- client/tests/kvm/tests/nic_bonding.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) create mode 100644 client/tests/kvm/__init__.py diff --git a/client/tests/kvm/__init__.py b/client/tests/kvm/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/client/tests/kvm/tests/nic_bonding.py b/client/tests/kvm/tests/nic_bonding.py index 692978c..ca9d70a 100644 --- a/client/tests/kvm/tests/nic_bonding.py +++ b/client/tests/kvm/tests/nic_bonding.py @@ -1,6 +1,6 @@ import logging, time, threading from autotest_lib.client.common_lib import error -from tests import file_transfer +from autotest_lib.client.tests.kvm.tests import file_transfer import kvm_test_utils, kvm_utils def run_nic_bonding(test, params, env): -- 1.7.3.4