From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58370) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhjoY-00070H-Cs for qemu-devel@nongnu.org; Thu, 01 Oct 2015 15:46:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZhjoV-0005Gc-5j for qemu-devel@nongnu.org; Thu, 01 Oct 2015 15:46:50 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:58467) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhjoU-0005GM-WA for qemu-devel@nongnu.org; Thu, 01 Oct 2015 15:46:47 -0400 From: Christopher Covington Date: Thu, 1 Oct 2015 15:46:25 -0400 Message-Id: <1443728785-10461-1-git-send-email-cov@codeaurora.org> In-Reply-To: <20150929154752.GA21067@hawk.localdomain> References: <20150929154752.GA21067@hawk.localdomain> Subject: [Qemu-devel] [PATCHv2] arm: Fail on unknown subtest List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: drjones@redhat.com, qemu-devel@nongnu.org, kvm@vger.kernel.org, kvmarm@lists.cs.columbia.edu Cc: Christopher Covington 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