From patchwork Tue Sep 29 15:08:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christopher Covington X-Patchwork-Id: 524536 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 396FC140789 for ; Thu, 1 Oct 2015 05:33:53 +1000 (AEST) Received: from localhost ([::1]:60703 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhN8R-0005Tf-Ax for incoming@patchwork.ozlabs.org; Wed, 30 Sep 2015 15:33:51 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41341) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgwWH-0001Uh-3X for qemu-devel@nongnu.org; Tue, 29 Sep 2015 11:08:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZgwWC-0006SG-TX for qemu-devel@nongnu.org; Tue, 29 Sep 2015 11:08:41 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:56778) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgwWC-0006Rk-Nk for qemu-devel@nongnu.org; Tue, 29 Sep 2015 11:08:36 -0400 Received: from smtp.codeaurora.org (localhost [127.0.0.1]) by smtp.codeaurora.org (Postfix) with ESMTP id 4973A141503; Tue, 29 Sep 2015 15:08:35 +0000 (UTC) Received: by smtp.codeaurora.org (Postfix, from userid 486) id 389B6141506; Tue, 29 Sep 2015 15:08:35 +0000 (UTC) Received: from keeshans.qualcomm.com (rrcs-67-52-130-30.west.biz.rr.com [67.52.130.30]) (using TLSv1.1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: cov@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 4D8C4141503; Tue, 29 Sep 2015 15:08:34 +0000 (UTC) From: Christopher Covington To: drjones@redhat.com, qemu-devel@nongnu.org Date: Tue, 29 Sep 2015 11:08:27 -0400 Message-Id: <1443539307-20690-1-git-send-email-cov@codeaurora.org> X-Mailer: git-send-email 1.8.1.1 X-Virus-Scanned: ClamAV using ClamSMTP X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 198.145.29.96 Cc: Christopher Covington Subject: [Qemu-devel] [PATCH] kvm-unit-tests: arm: Fail on unknown subtest X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Christopher Covington --- arm/selftest.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arm/selftest.c b/arm/selftest.c index fc9ec60..aa16a91 100644 --- a/arm/selftest.c +++ b/arm/selftest.c @@ -376,6 +376,8 @@ int main(int argc, char **argv) cpumask_set_cpu(0, &smp_reported); while (!cpumask_full(&smp_reported)) cpu_relax(); + } else { + report("Unknown subtest", false); } return report_summary();