From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36550) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPB4T-0006mO-9v for qemu-devel@nongnu.org; Thu, 26 Sep 2013 08:53:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VPB4O-0001OI-CA for qemu-devel@nongnu.org; Thu, 26 Sep 2013 08:53:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:30413) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPB4O-0001O6-3W for qemu-devel@nongnu.org; Thu, 26 Sep 2013 08:53:24 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r8QCrMBE002385 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 26 Sep 2013 08:53:22 -0400 Date: Thu, 26 Sep 2013 08:53:20 -0400 From: Luiz Capitulino Message-ID: <20130926085320.481c0da7@redhat.com> In-Reply-To: <1380196654-22446-1-git-send-email-famz@redhat.com> References: <1380196654-22446-1-git-send-email-famz@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] qemu-iotests: fix qmp.py search path List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: kwolf@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com On Thu, 26 Sep 2013 19:57:34 +0800 Fam Zheng wrote: > QMP/qmp.py is renamed to scripts/qmp/qmp.py, fix the search path in iotests.py. OOPs, sorry for that. > > Signed-off-by: Fam Zheng > --- > tests/qemu-iotests/iotests.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py > index 87b4a3a..376d6e8 100644 > --- a/tests/qemu-iotests/iotests.py > +++ b/tests/qemu-iotests/iotests.py > @@ -21,7 +21,7 @@ import re > import subprocess > import string > import unittest > -import sys; sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'QMP')) > +import sys; sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'scripts', 'qmp')) > import qmp > import struct >