From patchwork Thu Dec 8 17:05:49 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Jones X-Patchwork-Id: 9466721 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 9F137607D4 for ; Thu, 8 Dec 2016 17:06:00 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8AFCA285B7 for ; Thu, 8 Dec 2016 17:06:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7473A285E8; Thu, 8 Dec 2016 17:06:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2307A285BF for ; Thu, 8 Dec 2016 17:06:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753757AbcLHRF5 (ORCPT ); Thu, 8 Dec 2016 12:05:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59506 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753059AbcLHRF4 (ORCPT ); Thu, 8 Dec 2016 12:05:56 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 32F0285547; Thu, 8 Dec 2016 17:05:56 +0000 (UTC) Received: from kamzik.brq.redhat.com (kamzik.brq.redhat.com [10.34.1.143]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uB8H5p0L027860; Thu, 8 Dec 2016 12:05:54 -0500 From: Andrew Jones To: kvm@vger.kernel.org, kvmarm@lists.cs.columbia.edu Cc: wei@redhat.com, cov@codeaurora.org, andre.przywara@arm.com Subject: [PATCH kvm-unit-tests v2 2/2] arm/pmu: don't run tcg tests Date: Thu, 8 Dec 2016 18:05:49 +0100 Message-Id: <20161208170549.8793-3-drjones@redhat.com> In-Reply-To: <20161208170549.8793-1-drjones@redhat.com> References: <20161208170549.8793-1-drjones@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Thu, 08 Dec 2016 17:05:56 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The TCG PMU is barely implemented for ARM and not at all implemented for AArch64. Let's not bother running the TCG-only tests yet. We'll likely move them to a new TCG-only unittests.cfg at some point before re-enabling them too. Signed-off-by: Andrew Jones --- arm/unittests.cfg | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/arm/unittests.cfg b/arm/unittests.cfg index 044d97c9e73d..65f9c4c0b9eb 100644 --- a/arm/unittests.cfg +++ b/arm/unittests.cfg @@ -65,15 +65,15 @@ file = pmu.flat groups = pmu # Test PMU support (TCG) with -icount IPC=1 -[pmu-tcg-icount-1] -file = pmu.flat -extra_params = -icount 0 -append '1' -groups = pmu -accel = tcg +#[pmu-tcg-icount-1] +#file = pmu.flat +#extra_params = -icount 0 -append '1' +#groups = pmu +#accel = tcg # Test PMU support (TCG) with -icount IPC=256 -[pmu-tcg-icount-256] -file = pmu.flat -extra_params = -icount 8 -append '256' -groups = pmu -accel = tcg +#[pmu-tcg-icount-256] +#file = pmu.flat +#extra_params = -icount 8 -append '256' +#groups = pmu +#accel = tcg