From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [kvm-unit-tests PATCH] trivial: add "check" keyword description Date: Thu, 3 Mar 2016 14:51:40 +0100 Message-ID: <56D8416C.4070206@redhat.com> References: <1457012871-7060-1-git-send-email-lvivier@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit To: Laurent Vivier , kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:34148 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751002AbcCCNvn (ORCPT ); Thu, 3 Mar 2016 08:51:43 -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 6F31964D23 for ; Thu, 3 Mar 2016 13:51:43 +0000 (UTC) In-Reply-To: <1457012871-7060-1-git-send-email-lvivier@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On 03/03/2016 14:47, Laurent Vivier wrote: > x86/unittests.cfg uses a keyword which is not described in the header. > "check" is used and described in scripts/runtime.bash, > so add the comment in the header of all the unittests.cfg. > > Signed-off-by: Laurent Vivier > --- > arm/unittests.cfg | 4 ++++ > powerpc/unittests.cfg | 4 ++++ > x86/unittests.cfg | 4 ++++ > 3 files changed, 12 insertions(+) Applied (after resolving conflicts), thanks. Paolo > diff --git a/arm/unittests.cfg b/arm/unittests.cfg > index 5e26da1..9465c69 100644 > --- a/arm/unittests.cfg > +++ b/arm/unittests.cfg > @@ -8,6 +8,10 @@ > # 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. > +# check = = # check a file for a particular value before running > +# # a test. The check line can contain multiple files > +# # to check separated by a space but each check > +# # parameter needs to be of the form = > > # > # Test that the configured number of processors (smp = ), and > diff --git a/powerpc/unittests.cfg b/powerpc/unittests.cfg > index 0666922..02b21c7 100644 > --- a/powerpc/unittests.cfg > +++ b/powerpc/unittests.cfg > @@ -16,6 +16,10 @@ > # # kvm or tcg. If not specified, then kvm will > # # be used when available. > # timeout = # Optionally specify a timeout. > +# check = = # check a file for a particular value before running > +# # a test. The check line can contain multiple files > +# # to check separated by a space but each check > +# # parameter needs to be of the form = > ############################################################################## > > # > diff --git a/x86/unittests.cfg b/x86/unittests.cfg > index 99eff26..3155eca 100644 > --- a/x86/unittests.cfg > +++ b/x86/unittests.cfg > @@ -6,6 +6,10 @@ > # 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 ... > +# check = = # check a file for a particular value before running > +# # a test. The check line can contain multiple files > +# # to check separated by a space but each check > +# # parameter needs to be of the form = > > [apic] > file = apic.flat >