From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47125) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btL33-00036W-Il for qemu-devel@nongnu.org; Sun, 09 Oct 2016 16:50:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1btL2y-0003gu-K5 for qemu-devel@nongnu.org; Sun, 09 Oct 2016 16:50:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:34320) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btL2y-0003gg-AV for qemu-devel@nongnu.org; Sun, 09 Oct 2016 16:50:12 -0400 Date: Sun, 9 Oct 2016 23:50:10 +0300 From: "Michael S. Tsirkin" Message-ID: <20161009235000-mutt-send-email-mst@kernel.org> References: <1475580648-6470-1-git-send-email-lvivier@redhat.com> <1475580648-6470-3-git-send-email-lvivier@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1475580648-6470-3-git-send-email-lvivier@redhat.com> Subject: Re: [Qemu-devel] [PATCH 2/2] tests: use accel=best instead of accel=kvm:tcg List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Laurent Vivier Cc: Paolo Bonzini , Alex =?iso-8859-1?Q?Benn=E9e?= , Thomas Huth , Peter Maydell , qemu-devel@nongnu.org, Stefano Stabellini On Tue, Oct 04, 2016 at 01:30:48PM +0200, Laurent Vivier wrote: > This avoids to have logs polluted by "kvm accelerator not found". > > Signed-off-by: Laurent Vivier Acked-by: Michael S. Tsirkin > --- > tests/bios-tables-test.c | 2 +- > tests/postcopy-test.c | 8 ++++---- > 2 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c > index 7e27ea9..497dd56 100644 > --- a/tests/bios-tables-test.c > +++ b/tests/bios-tables-test.c > @@ -716,7 +716,7 @@ static void test_acpi_one(const char *params, test_data *data) > "-net none -display none %s " > "-drive id=hd0,if=none,file=%s,format=raw " > "-device ide-hd,drive=hd0 ", > - data->machine, "kvm:tcg", > + data->machine, "best", > params ? params : "", disk); > > qtest_start(args); > diff --git a/tests/postcopy-test.c b/tests/postcopy-test.c > index 41ed1a9..d549d5e 100644 > --- a/tests/postcopy-test.c > +++ b/tests/postcopy-test.c > @@ -368,12 +368,12 @@ static void test_migrate(void) > > if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) { > init_bootfile_x86(bootpath); > - cmd_src = g_strdup_printf("-machine accel=kvm:tcg -m 150M" > + cmd_src = g_strdup_printf("-machine accel=best -m 150M" > " -name pcsource,debug-threads=on" > " -serial file:%s/src_serial" > " -drive file=%s,format=raw", > tmpfs, bootpath); > - cmd_dst = g_strdup_printf("-machine accel=kvm:tcg -m 150M" > + cmd_dst = g_strdup_printf("-machine accel=best -m 150M" > " -name pcdest,debug-threads=on" > " -serial file:%s/dest_serial" > " -drive file=%s,format=raw" > @@ -381,12 +381,12 @@ static void test_migrate(void) > tmpfs, bootpath, uri); > } else if (strcmp(arch, "ppc64") == 0) { > init_bootfile_ppc(bootpath); > - cmd_src = g_strdup_printf("-machine accel=kvm:tcg -m 256M" > + cmd_src = g_strdup_printf("-machine accel=best -m 256M" > " -name pcsource,debug-threads=on" > " -serial file:%s/src_serial" > " -drive file=%s,if=pflash,format=raw", > tmpfs, bootpath); > - cmd_dst = g_strdup_printf("-machine accel=kvm:tcg -m 256M" > + cmd_dst = g_strdup_printf("-machine accel=best -m 256M" > " -name pcdest,debug-threads=on" > " -serial file:%s/dest_serial" > " -incoming %s", > -- > 2.7.4