From patchwork Thu Dec 17 20:10:53 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Jones X-Patchwork-Id: 7877141 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id A5484BEEE5 for ; Thu, 17 Dec 2015 20:11:15 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C7EB920426 for ; Thu, 17 Dec 2015 20:11:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C4563203F7 for ; Thu, 17 Dec 2015 20:11:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755833AbbLQULJ (ORCPT ); Thu, 17 Dec 2015 15:11:09 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57679 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755821AbbLQULH (ORCPT ); Thu, 17 Dec 2015 15:11:07 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 5A911693EB for ; Thu, 17 Dec 2015 20:11:07 +0000 (UTC) Received: from hawk.localdomain.com (ovpn-204-51.brq.redhat.com [10.40.204.51]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tBHKAwIq014240; Thu, 17 Dec 2015 15:11:05 -0500 From: Andrew Jones To: kvm@vger.kernel.org Cc: rkrcmar@redhat.com, pbonzini@redhat.com Subject: [kvm-unit-tests PATCH 2/3] cleanup unittests.cfg headers Date: Thu, 17 Dec 2015 14:10:53 -0600 Message-Id: <1450383054-9724-3-git-send-email-drjones@redhat.com> In-Reply-To: <1450383054-9724-1-git-send-email-drjones@redhat.com> References: <1450383054-9724-1-git-send-email-drjones@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Andrew Jones --- arm/unittests.cfg | 26 +++++++++++++++++--------- x86/unittests.cfg | 21 ++++++++++++++------- 2 files changed, 31 insertions(+), 16 deletions(-) diff --git a/arm/unittests.cfg b/arm/unittests.cfg index 5e26da1a8c1bc..926bbb153728b 100644 --- a/arm/unittests.cfg +++ b/arm/unittests.cfg @@ -1,13 +1,21 @@ -# Define your new unittest following the convention: +############################################################################## +# unittest configuration +# # [unittest_name] -# file = foo.flat # Name of the flat file to be used -# smp = 2 # Number of processors the VM will use during this test -# # Use $MAX_SMP to use the maximum the host supports. -# extra_params = -append # Additional parameters used -# arch = arm|arm64 # Only if test case is specific to one -# groups = group1 group2 # Used to identify test cases with run_tests -g ... -# accel = kvm|tcg # Optionally specify if test must run with kvm or tcg. -# # If not specified, then kvm will be used when available. +# file = .flat # Name of the flat file to be used. +# smp = # Number of processors the VM will use +# # during this test. Use $MAX_SMP to use +# # the maximum the host supports. Defaults +# # to one. +# extra_params = -append # Additional parameters used. +# arch = arm|arm64 # Select one if the test case is +# # specific to only one. +# groups = ... # Used to identify test cases +# # with run_tests -g ... +# accel = kvm|tcg # Optionally specify if test must run with +# # kvm or tcg. If not specified, then kvm will +# # be used when available. +############################################################################## # # Test that the configured number of processors (smp = ), and diff --git a/x86/unittests.cfg b/x86/unittests.cfg index ffffc15c86df7..ae41781b5b72b 100644 --- a/x86/unittests.cfg +++ b/x86/unittests.cfg @@ -1,11 +1,18 @@ -# Define your new unittest following the convention: +############################################################################## +# unittest configuration +# # [unittest_name] -# file = foo.flat # Name of the flat file to be used -# smp = 2 # Number of processors the VM will use during this test -# # Use $MAX_SMP to use the maximum the host supports. -# extra_params = -cpu qemu64,+x2apic # Additional parameters used -# arch = i386/x86_64 # Only if the test case works only on one of them -# groups = group1 group2 # Used to identify test cases with run_tests -g ... +# file = .flat # Name of the flat file to be used. +# smp = # Number of processors the VM will use +# # during this test. Use $MAX_SMP to use +# # the maximum the host supports. Defaults +# # to one. +# extra_params = -append # Additional parameters used. +# arch = i386|x86_64 # Select one if the test case is +# # specific to only one. +# groups = ... # Used to identify test cases +# # with run_tests -g ... +############################################################################## [apic] file = apic.flat