From patchwork Tue Mar 8 12:35:38 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Huth X-Patchwork-Id: 12773687 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2CCCFC433EF for ; Tue, 8 Mar 2022 12:36:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346931AbiCHMhA (ORCPT ); Tue, 8 Mar 2022 07:37:00 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34256 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1346934AbiCHMgw (ORCPT ); Tue, 8 Mar 2022 07:36:52 -0500 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 02CD246B36 for ; Tue, 8 Mar 2022 04:35:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1646742955; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=15wWv9LVAZnxxtccB9zs+XyKPK703Asi9tPPEBhDSuQ=; b=EmdG8W7HJejBkf9qSR3ZUedoNx1rHTMy5uxrTKJySnt22TE46CMYpFKVmqGbWv10WE7wQB tG8x/WkMLoIQllF3MeEDTgBbOjCdQd+BRFlX9bwsZaV8J2rm+0pW9b4ayEenhwcxIBBH7t nX6Vb0F5c4Yvfj+8a638uRzVVq7Bpz4= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-110-DOoRzjYPNguc3wplRM31XA-1; Tue, 08 Mar 2022 07:35:51 -0500 X-MC-Unique: DOoRzjYPNguc3wplRM31XA-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id B49E61091DA0; Tue, 8 Mar 2022 12:35:50 +0000 (UTC) Received: from thuth.com (dhcp-192-183.str.redhat.com [10.33.192.183]) by smtp.corp.redhat.com (Postfix) with ESMTP id B9CB28494F; Tue, 8 Mar 2022 12:35:49 +0000 (UTC) From: Thomas Huth To: Paolo Bonzini Cc: kvm@vger.kernel.org, =?utf-8?q?Alex_Benn=C3=A9e?= , Thomas Huth Subject: [kvm-unit-tests PATCH] x86: Update the list of tests that we run in the Cirrus-CI Date: Tue, 8 Mar 2022 13:35:38 +0100 Message-Id: <20220308123538.538575-1-thuth@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org The new tests that have been added in commit bc0dd8bdc627f0 ("x86/debug: Add single-step #DB + STI/MOVSS blocking tests") require a fixed kernel which we don't have in the Cirrus-CI yet, so let's disable the failing "debug" test for now. The "pcid" test has been renamed to "pcid-enabled" in commit cad94b1394aa519 ("x86: Add a 'pcid' group for the various PCID+INVPCID permutations"). Some additional tests are working fine now, too (pcid-asymmetric, msr, vmx_apic_passthrough_tpr_threshold_test, vmx_init_signal_test, vmx_pf_exception_test, vmx_sipi_signal_test), likely since the update to Fedora 35, so we can also enable them in the CI now. Signed-off-by: Thomas Huth --- ci/cirrus-ci-fedora.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ci/cirrus-ci-fedora.yml b/ci/cirrus-ci-fedora.yml index a6b9cea..6eace8b 100644 --- a/ci/cirrus-ci-fedora.yml +++ b/ci/cirrus-ci-fedora.yml @@ -20,7 +20,6 @@ fedora_task: - ./run_tests.sh access asyncpf - debug emulator ept hypercall @@ -33,8 +32,10 @@ fedora_task: ioapic ioapic-split kvmclock_test - pcid + msr + pcid-asymmetric pcid-disabled + pcid-enabled rdpru realmode rmap_chain @@ -59,6 +60,10 @@ fedora_task: vmexit_tscdeadline_immed vmexit_vmcall vmx_apic_passthrough_thread + vmx_apic_passthrough_tpr_threshold_test + vmx_init_signal_test + vmx_pf_exception_test + vmx_sipi_signal_test xsave | tee results.txt - grep -q PASS results.txt && ! grep -q FAIL results.txt