From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E9D94C41514 for ; Mon, 19 Aug 2019 20:21:37 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id C14C6206DF for ; Mon, 19 Aug 2019 20:21:37 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C14C6206DF Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:57340 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hzo9o-0004w7-Kr for qemu-devel@archiver.kernel.org; Mon, 19 Aug 2019 16:21:36 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45745) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hzo7K-00010d-0b for qemu-devel@nongnu.org; Mon, 19 Aug 2019 16:19:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hzo7I-0004JA-OQ for qemu-devel@nongnu.org; Mon, 19 Aug 2019 16:19:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50698) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hzo7F-0004I4-CL; Mon, 19 Aug 2019 16:18:57 -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 7DDB6315C01E; Mon, 19 Aug 2019 20:18:56 +0000 (UTC) Received: from localhost (ovpn-204-64.brq.redhat.com [10.40.204.64]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 20D421F4; Mon, 19 Aug 2019 20:18:52 +0000 (UTC) From: Max Reitz To: qemu-block@nongnu.org Date: Mon, 19 Aug 2019 22:18:43 +0200 Message-Id: <20190819201851.24418-1-mreitz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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.41]); Mon, 19 Aug 2019 20:18:56 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v3 0/8] iotests: Selfish patches 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 , Thomas Huth , John Snow , qemu-devel@nongnu.org, Max Reitz Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Hi, Nothing has changed too much since the previous version, thus I=E2=80=99l= l start with a link to its cover letter: https://lists.nongnu.org/archive/html/qemu-block/2019-06/msg01102.html What has changed is this: v3: - Patches 2 and 3: Resolved rebase conflicts - Added patch 4. It seems useful to support the new case-skipping method in @iotests.skip_if_unsupported so that annotation works even with setUp(). - Added patch 5. This has been proposed by Kevin back in v1 (for a slightly different reason, though). Now that I added patch 4, it would be nice if I could make use of it for patches 6 and 7, but the problem is that both tests store the driver name in a class attribute. Therefore, we need patch 5 that allows us to query that attribute=E2=80=99s value in skip_if_unsupporte= d(). - Patches 6 and 7: Make use of the fact that the annotation works now (Also, I dropped supported_null_drivers, because there is no point in having it =E2=80=93 especially with patch 8.) ((Also, resolved rebase conflicts.)) - Added patch 8. It just itches me that we call qemu every time we inquire the list of supported formats, and this patch eases that itch. git-backport-diff against v2: Key: [----] : patches are identical [####] : number of functional differences between upstream/downstream pat= ch [down] : patch is downstream-only The flags [FC] indicate (F)unctional and (C)ontextual differences, respec= tively 001/8:[----] [--] 'iotests: Add -display none to the qemu options' 002/8:[0004] [FC] 'iotests: Prefer null-co over null-aio' 003/8:[0003] [FC] 'iotests: Allow skipping test cases' 004/8:[down] 'iotests: Use case_skip() in skip_if_unsupported()' 005/8:[down] 'iotests: Let skip_if_unsupported() accept a method' 006/8:[0014] [FC] 'iotests: Test driver whitelisting in 093' 007/8:[0010] [FC] 'iotests: Test driver whitelisting in 136' 008/8:[down] 'iotests: Cache supported_formats()' Max Reitz (8): iotests: Add -display none to the qemu options iotests: Prefer null-co over null-aio iotests: Allow skipping test cases iotests: Use case_skip() in skip_if_unsupported() iotests: Let skip_if_unsupported() accept a method iotests: Test driver whitelisting in 093 iotests: Test driver whitelisting in 136 iotests: Cache supported_formats() tests/qemu-iotests/093 | 19 +++++++++------ tests/qemu-iotests/136 | 14 +++++++---- tests/qemu-iotests/245 | 2 +- tests/qemu-iotests/check | 6 ++--- tests/qemu-iotests/iotests.py | 45 ++++++++++++++++++++++++++++------- 5 files changed, 62 insertions(+), 24 deletions(-) --=20 2.21.0