From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33731) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhwXA-000532-TF for qemu-devel@nongnu.org; Fri, 02 Oct 2015 05:21:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZhwX6-0008K6-T4 for qemu-devel@nongnu.org; Fri, 02 Oct 2015 05:21:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50597) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhwX6-0008Iw-OH for qemu-devel@nongnu.org; Fri, 02 Oct 2015 05:21:40 -0400 Date: Fri, 2 Oct 2015 11:21:34 +0200 From: Andrew Jones Message-ID: <20151002092134.GA3719@hawk.localdomain> References: <20150929154752.GA21067@hawk.localdomain> <1443728785-10461-1-git-send-email-cov@codeaurora.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1443728785-10461-1-git-send-email-cov@codeaurora.org> Subject: Re: [Qemu-devel] [PATCHv2] arm: Fail on unknown subtest List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Christopher Covington Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, kvm@vger.kernel.org, kvmarm@lists.cs.columbia.edu On Thu, Oct 01, 2015 at 03:46:25PM -0400, Christopher Covington wrote: > Signed-off-by: Christopher Covington > --- > arm/selftest.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/arm/selftest.c b/arm/selftest.c > index fc9ec60..f4a5030 100644 > --- a/arm/selftest.c > +++ b/arm/selftest.c > @@ -376,6 +376,9 @@ int main(int argc, char **argv) > cpumask_set_cpu(0, &smp_reported); > while (!cpumask_full(&smp_reported)) > cpu_relax(); > + } else { > + printf("Unknown subtest\n"); > + abort(); > } > > return report_summary(); > -- > Qualcomm Innovation Center, Inc. > The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, > a Linux Foundation Collaborative Project > > Reviewed-by: Andrew Jones and applied to https://github.com/rhdrjones/kvm-unit-tests/tree/staging Thanks, drew