From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41749) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aiQjl-0000g5-2j for qemu-devel@nongnu.org; Tue, 22 Mar 2016 14:09:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aiQjk-0005Sx-8H for qemu-devel@nongnu.org; Tue, 22 Mar 2016 14:09:01 -0400 References: <1458072268-53705-1-git-send-email-vsementsov@virtuozzo.com> <1458072268-53705-5-git-send-email-vsementsov@virtuozzo.com> From: John Snow Message-ID: <56F18A35.7030102@redhat.com> Date: Tue, 22 Mar 2016 14:08:53 -0400 MIME-Version: 1.0 In-Reply-To: <1458072268-53705-5-git-send-email-vsementsov@virtuozzo.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 04/22] iotests: add default node-name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vladimir Sementsov-Ogievskiy , qemu-devel@nongnu.org Cc: kwolf@redhat.com, famz@redhat.com, qemu-block@nongnu.org, mreitz@redhat.com, stefanha@redhat.com, den@openvz.org, pbonzini@redhat.com On 03/15/2016 04:04 PM, Vladimir Sementsov-Ogievskiy wrote: > When testing migration, auto-generated by qemu node-names differs in > source and destination qemu and migration fails. After this patch, > auto-generated by iotest nodenames will be the same. > > Signed-off-by: Vladimir Sementsov-Ogievskiy > --- > tests/qemu-iotests/iotests.py | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py > index 2445cf2..6807b07 100644 > --- a/tests/qemu-iotests/iotests.py > +++ b/tests/qemu-iotests/iotests.py > @@ -156,6 +156,7 @@ class VM(object): > options.append('file=%s' % path) > options.append('format=%s' % imgfmt) > options.append('cache=%s' % cachemode) > + options.append('node-name=drivenode%d' % self._num_drives) > > if opts: > options.append(opts) > Tested-by: John Snow Reviewed-by: John Snow