From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:40294) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gw46g-0007bB-Gs for qemu-devel@nongnu.org; Tue, 19 Feb 2019 07:02:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gw46e-0006gf-Ny for qemu-devel@nongnu.org; Tue, 19 Feb 2019 07:02:38 -0500 References: <20190219115937.21587-1-stefanha@redhat.com> From: Thomas Huth Message-ID: <2598979f-d8b5-4324-3ca4-f87802d4a9d1@redhat.com> Date: Tue, 19 Feb 2019 13:02:24 +0100 MIME-Version: 1.0 In-Reply-To: <20190219115937.21587-1-stefanha@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] iotests: drop unnecessary accel=kvm List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi , qemu-devel@nongnu.org Cc: Kevin Wolf , Max Reitz , qemu-block@nongnu.org, Vladimir Sementsov-Ogievskiy On 19/02/2019 12.59, Stefan Hajnoczi wrote: > Tests 235 and 238 do not require the kvm accelerator. TCG works fine. > > Use the default accelerator instead of requiring kvm. > > Suggested-by: Thomas Huth > Signed-off-by: Stefan Hajnoczi > --- > tests/qemu-iotests/235 | 1 - > tests/qemu-iotests/238 | 1 - > 2 files changed, 2 deletions(-) > > diff --git a/tests/qemu-iotests/235 b/tests/qemu-iotests/235 > index d6edd97ab4..329da8f0c2 100755 > --- a/tests/qemu-iotests/235 > +++ b/tests/qemu-iotests/235 > @@ -49,7 +49,6 @@ qemu_img_create('-f', iotests.imgfmt, '-o', 'preallocation=metadata', disk, > str(size)) > > vm = QEMUMachine(iotests.qemu_prog) > -vm.add_args('-machine', 'accel=kvm') According to the initial commit log of 235: "iotests: simple mirror test with kvm on 1G image" ... so I assume KVM was used on purpose here? Thomas