From nobody Sat May 4 09:33:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1570026191; cv=none; d=zoho.com; s=zohoarc; b=PQY+jdfgSlTbeOmFbGUSSbQRu7CnFzNnXpa17Ys9dWa0mAcgOD1TZqeQ+3TzRHeV4Yw92JUgsIqRH2EpCJ9/+RFQetapkyW8YScVlPRCihTFb5WTbVHdFD1MXbo2K+L5iRS7ASsDH1EfcOX48jtGle1cNv1/ydwLDAs/qRp/gq8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1570026191; h=Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=8TGZywRWbYFdOU6jFabcTFSJnPuiwEQ0PgF4E9OKu/o=; b=MIlZ5B9Jz4KqwCZepswiMzF+t6fTFLu8AlemS3fui2rYgodof+4Q/OdC7KKy/05YU/mgRwTgFAN364QNG10Oayj0hYD0dLUaWhh3GxBkB9b7UYbTKHD5bqGKXRCMgPHnoD6/RSBsBRXgUL5oznjoEvOVUo9enf9vPfrIA2iqhIA= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1570026191264882.750477699033; Wed, 2 Oct 2019 07:23:11 -0700 (PDT) Received: from localhost ([::1]:55822 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFfX1-0005Qs-RG for importer@patchew.org; Wed, 02 Oct 2019 10:23:07 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37939) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFfVv-0004O6-7H for qemu-devel@nongnu.org; Wed, 02 Oct 2019 10:22:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFfVt-00057i-6f for qemu-devel@nongnu.org; Wed, 02 Oct 2019 10:21:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49724) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iFfVp-00054m-Kn; Wed, 02 Oct 2019 10:21:53 -0400 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3182E4E924; Wed, 2 Oct 2019 14:21:52 +0000 (UTC) Received: from thuth.com (ovpn-116-20.ams2.redhat.com [10.36.116.20]) by smtp.corp.redhat.com (Postfix) with ESMTP id B9EBF608A5; Wed, 2 Oct 2019 14:21:50 +0000 (UTC) From: Thomas Huth To: Max Reitz , qemu-block@nongnu.org Subject: [PATCH] iotests: Do not run the iotests during "make check" anymore Date: Wed, 2 Oct 2019 16:21:46 +0200 Message-Id: <20191002142146.6124-1-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Wed, 02 Oct 2019 14:21:52 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Running the iotests during "make check" is causing more headaches than benefits for the block layer maintainers, so let's disable the iotests during "make check" again. Signed-off-by: Thomas Huth Reviewed-by: Max Reitz --- tests/Makefile.include | 2 +- tests/qemu-iotests/group | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.include b/tests/Makefile.include index 3543451ed3..5d19f39ee7 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -1172,7 +1172,7 @@ check-acceptance: check-venv $(TESTS_RESULTS_DIR) check-qapi-schema: $(patsubst %,check-%, $(check-qapi-schema-y)) check-tes= ts/qapi-schema/doc-good.texi check-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS)) check-block: $(patsubst %,check-%, $(check-block-y)) -check: check-block check-qapi-schema check-unit check-softfloat check-qtes= t check-decodetree +check: check-qapi-schema check-unit check-softfloat check-qtest check-deco= detree check-clean: rm -rf $(check-unit-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y) rm -rf $(sort $(foreach target,$(SYSEMU_TARGET_LIST), $(check-qtest-$(tar= get)-y)) $(check-qtest-generic-y)) diff --git a/tests/qemu-iotests/group b/tests/qemu-iotests/group index 5d3da937e4..246cf9aa65 100644 --- a/tests/qemu-iotests/group +++ b/tests/qemu-iotests/group @@ -10,7 +10,7 @@ # # - img : Tests in this group can be used to excercise the qemu-img tool. # -# - auto : Tests in this group are used during "make check" and should be +# - auto : Tests in this group are usable in all environments and should be # runnable in any case. That means they should run with every QEMU binary # (also non-x86), with every QEMU configuration (i.e. must not fail if # an optional feature is not compiled in - but reporting a "skip" is ok), --=20 2.18.1