From nobody Tue Nov 4 12:59:08 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.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 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1504263470754530.4292256666632; Fri, 1 Sep 2017 03:57:50 -0700 (PDT) Received: from localhost ([::1]:35080 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dnje1-0007sb-Mi for importer@patchew.org; Fri, 01 Sep 2017 06:57:49 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50429) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dnjbO-0005sS-6K for qemu-devel@nongnu.org; Fri, 01 Sep 2017 06:55:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dnjbG-0008Tb-I9 for qemu-devel@nongnu.org; Fri, 01 Sep 2017 06:55:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35024) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dnjb6-0008Rg-PF; Fri, 01 Sep 2017 06:54:48 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B8AF1C0587EB; Fri, 1 Sep 2017 10:54:47 +0000 (UTC) Received: from localhost.localdomain.com (unknown [10.42.22.189]) by smtp.corp.redhat.com (Postfix) with ESMTP id 423277C8A6; Fri, 1 Sep 2017 10:54:46 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com B8AF1C0587EB Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=berrange@redhat.com From: "Daniel P. Berrange" To: qemu-devel@nongnu.org Date: Fri, 1 Sep 2017 11:54:34 +0100 Message-Id: <20170901105434.3288-3-berrange@redhat.com> In-Reply-To: <20170901105434.3288-1-berrange@redhat.com> References: <20170901105434.3288-1-berrange@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Fri, 01 Sep 2017 10:54:47 +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 Subject: [Qemu-devel] [PATCH 2/2] iotests: blacklist 194 with the luks driver X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , qemu-block@nongnu.org, Max Reitz , Stefan Hajnoczi , Fam Zheng Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The 194 test has alot of code that assumes a simple image file. Rewriting this to work with luks is possible, but non-trivial, so blacklist the luks format for now. Signed-off-by: Daniel P. Berrange Reviewed-by: Eric Blake Reviewed-by: Kashyap Chamarthy Reviewed-by: Stefan Hajnoczi --- tests/qemu-iotests/194 | 1 + tests/qemu-iotests/iotests.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/qemu-iotests/194 b/tests/qemu-iotests/194 index a3e3bad664..bfe1859ecf 100755 --- a/tests/qemu-iotests/194 +++ b/tests/qemu-iotests/194 @@ -23,6 +23,7 @@ import os import atexit import iotests =20 +iotests.verify_image_format(unsupported_fmts=3D['luks']) iotests.verify_platform(['linux']) =20 img_size =3D '1G' diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index 7233983f3c..3e7304b678 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -395,9 +395,11 @@ def notrun(reason): print '%s not run: %s' % (seq, reason) sys.exit(0) =20 -def verify_image_format(supported_fmts=3D[]): +def verify_image_format(supported_fmts=3D[], unsupported_fmts=3D[]): if supported_fmts and (imgfmt not in supported_fmts): notrun('not suitable for this image format: %s' % imgfmt) + if unsupported_fmts and (imgfmt in unsupported_fmts): + notrun('not suitable for this image format: %s' % imgfmt) =20 def verify_platform(supported_oses=3D['linux']): if True not in [sys.platform.startswith(x) for x in supported_oses]: --=20 2.13.5