From mboxrd@z Thu Jan 1 00:00:00 1970 From: Radim =?utf-8?B?S3LEjW3DocWZ?= Subject: Re: [kvm-unit-tests PATCH v1 2/6] s390x: basic self test Date: Tue, 16 May 2017 15:35:12 +0200 Message-ID: <20170516133511.GA10587@potion> References: <20170512105830.10604-1-david@redhat.com> <20170512105830.10604-3-david@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kvm@vger.kernel.org, Paolo Bonzini , Thomas Huth , Christian Borntraeger , Cornelia Huck To: David Hildenbrand Return-path: Received: from mx1.redhat.com ([209.132.183.28]:40578 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751357AbdEPNfY (ORCPT ); Tue, 16 May 2017 09:35:24 -0400 Content-Disposition: inline In-Reply-To: <20170512105830.10604-3-david@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: 2017-05-12 12:58+0200, David Hildenbrand: > Test if the general infrastructure is working. The test will fail until > we have proper sclp console output. > > Signed-off-by: David Hildenbrand > --- > diff --git a/s390x/selftest.c b/s390x/selftest.c > @@ -0,0 +1,31 @@ > +int main(int argc, char**argv) > +{ > + report_prefix_push("selftest"); > + > + if (argc != 3) > + report_abort("Wrong number of arguments"); > + > + if (strcmp(argv[0], "s390x/selftest.elf") != 0) > + report_abort("wrong program name"); This is going to fail when executed as a standalone test (argv[0] would be a temp file name). No point in checking, IMO. > + if (strcmp(argv[1], "test") != 0) > + report_abort("wrong parameter value"); > + if (strcmp(argv[2], "123") != 0) > + report_abort("wrong parameter value"); > + > + report("test true", true, 0); ^ It seems you'll be doing v2 -- please remove this zero in it. (I'll prepare patch that check format of report in order to have automatic notifications in the future. :]) Thanks.