From patchwork Mon May 2 12:33:49 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Igor Mammedov X-Patchwork-Id: 617568 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3qz6rj6Z4wz9sxb for ; Tue, 3 May 2016 00:59:01 +1000 (AEST) Received: from localhost ([::1]:36507 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axDLf-0003JL-1s for incoming@patchwork.ozlabs.org; Mon, 02 May 2016 08:53:15 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35905) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axD4Q-0007gm-AD for qemu-devel@nongnu.org; Mon, 02 May 2016 08:35:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1axD4E-0000Ki-PQ for qemu-devel@nongnu.org; Mon, 02 May 2016 08:35:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52107) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axD4E-0000B4-Jy for qemu-devel@nongnu.org; Mon, 02 May 2016 08:35:14 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (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 7D0902637 for ; Mon, 2 May 2016 12:35:03 +0000 (UTC) Received: from dell-r430-03.lab.eng.brq.redhat.com (dell-r430-03.lab.eng.brq.redhat.com [10.34.112.60]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u42CXqcR000450; Mon, 2 May 2016 08:35:01 -0400 From: Igor Mammedov To: qemu-devel@nongnu.org Date: Mon, 2 May 2016 14:33:49 +0200 Message-Id: <1462192431-146342-41-git-send-email-imammedo@redhat.com> In-Reply-To: <1462192431-146342-1-git-send-email-imammedo@redhat.com> References: <1462192431-146342-1-git-send-email-imammedo@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [RFC 40/42] tests: acpi: extend CPU hotplug test with NUMA support X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: drjones@redhat.com, ehabkost@redhat.com, mst@redhat.com, armbru@redhat.com, marcel@redhat.com Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Signed-off-by: Igor Mammedov --- tests/bios-tables-test.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c index 670e6a8..1cf6a07 100644 --- a/tests/bios-tables-test.c +++ b/tests/bios-tables-test.c @@ -808,7 +808,8 @@ static void test_acpi_piix4_tcg_cphp(void) data.machine = MACHINE_PC; data.variant = ".cphp"; test_acpi_one("-machine accel=tcg,cpu-hotplug=on" - " -smp 2,cores=3,sockets=2,maxcpus=6", + " -smp 2,cores=3,sockets=2,maxcpus=6" + " -numa node,cpus=0-2 -numa node,cpus=3-5", &data); free_test_data(&data); } @@ -821,7 +822,8 @@ static void test_acpi_q35_tcg_cphp(void) data.machine = MACHINE_Q35; data.variant = ".cphp"; test_acpi_one("-machine q35,accel=tcg,cpu-hotplug=on" - " -smp 2,cores=3,sockets=2,maxcpus=6", + " -smp 2,cores=3,sockets=2,maxcpus=6" + " -numa node,cpus=0-2 -numa node,cpus=3-5", &data); free_test_data(&data); }