From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40115) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhLH0-0002eH-7s for qemu-devel@nongnu.org; Tue, 06 Sep 2016 14:39:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bhLGk-00079k-UJ for qemu-devel@nongnu.org; Tue, 06 Sep 2016 14:39:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35856) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhLGj-00078s-CE for qemu-devel@nongnu.org; Tue, 06 Sep 2016 14:38:50 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C077081227 for ; Tue, 6 Sep 2016 18:38:34 +0000 (UTC) References: <1473182317-31140-1-git-send-email-marcel@redhat.com> From: Marcel Apfelbaum Message-ID: <5c5551a5-4a92-bdad-f50e-ebae1654b1ac@redhat.com> Date: Tue, 6 Sep 2016 21:38:21 +0300 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH V2] tests/acpi: speedup acpi tests List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini , qemu-devel@nongnu.org Cc: imammedo@redhat.com, mst@redhat.com On 09/06/2016 09:30 PM, Paolo Bonzini wrote: > > > On 06/09/2016 19:18, Marcel Apfelbaum wrote: >> diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c >> index de4019e..ac8ddfd 100644 >> --- a/tests/bios-tables-test.c >> +++ b/tests/bios-tables-test.c >> @@ -711,9 +711,11 @@ static void test_acpi_one(const char *params, test_data *data) >> { >> char *args; >> >> - args = g_strdup_printf("-net none -display none %s " >> + args = g_strdup_printf("-machine %s,accel=%s,kernel-irqchip=off " >> + "-cpu qemu64 -net none -display none %s " >> "-drive id=hd0,if=none,file=%s,format=raw " >> - "-device ide-hd,drive=hd0 ", >> + "-device ide-hd,drive=hd0", >> + data->machine, "kvm:tcg", >> params ? params : "", disk); > > qemu64 is the default for qemu-system-x86_64; perhaps you wanted "-cpu > kvm64"? > No, I wanted qemu64. I'll get rid of it. Thanks, Marcel > Paolo >