From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [kvm-unit-tests PATCH v4 02/13] x86/*: report skipped tests Date: Thu, 26 May 2016 09:22:58 +0200 Message-ID: <8a5efdd2-2c62-93a6-d8a0-ef4d37e8d0fc@redhat.com> References: <1462983171-4208-1-git-send-email-rkrcmar@redhat.com> <1462983171-4208-3-git-send-email-rkrcmar@redhat.com> <573B0C67.8010707@redhat.com> <20160525171927.GA8077@potion> <20160525172352.GB8077@potion> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: kvm@vger.kernel.org, Andrew Jones To: =?UTF-8?B?UmFkaW0gS3LEjW3DocWZ?= Return-path: Received: from mail-wm0-f53.google.com ([74.125.82.53]:36439 "EHLO mail-wm0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753147AbcEZHXD (ORCPT ); Thu, 26 May 2016 03:23:03 -0400 Received: by mail-wm0-f53.google.com with SMTP id n129so212362820wmn.1 for ; Thu, 26 May 2016 00:23:01 -0700 (PDT) In-Reply-To: <20160525172352.GB8077@potion> Sender: kvm-owner@vger.kernel.org List-ID: On 25/05/2016 19:23, Radim Kr=C4=8Dm=C3=A1=C5=99 wrote: > diff --git a/x86/hyperv_synic.c b/x86/hyperv_synic.c > index f5eb82bb7336..5a06fb724a87 100644 > --- a/x86/hyperv_synic.c > +++ b/x86/hyperv_synic.c > @@ -202,7 +202,7 @@ int main(int ac, char **av) > =20 > report("Hyper-V SynIC test", ok); > } else { > - report_skip("Hyper-V SynIC is not supported"); > + printf("Hyper-V SynIC is not supported"); > } > =20 > return report_summary(); > diff --git a/x86/pku.c b/x86/pku.c > index 6214f0bc151f..488cce3c6fdf 100644 > --- a/x86/pku.c > +++ b/x86/pku.c > @@ -67,7 +67,7 @@ int main(int ac, char **av) > unsigned int pkru_wd =3D 0x20; > =20 > if (!(cpuid_indexed(7, 0).c & (1 << X86_FEATURE_PKU))) { > - printf("PKU not enabled, aborting\n"); > + printf("PKU not enabled\n"); > return report_summary(); > } > =20 > diff --git a/x86/smap.c b/x86/smap.c > index c9de081a474b..69dd80915c4a 100644 > --- a/x86/smap.c > +++ b/x86/smap.c > @@ -92,7 +92,7 @@ int main(int ac, char **av) > unsigned long i; > =20 > if (!(cpuid_indexed(7, 0).b & (1 << X86_FEATURE_SMAP))) { > - printf("SMAP not enabled, aborting\n"); > + printf("SMAP not enabled\n"); > return report_summary(); > } > =20 This one looks good. Thanks, Paolo