From patchwork Wed May 8 14:29:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Wolf X-Patchwork-Id: 242588 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 2F22F2C00A0 for ; Thu, 9 May 2013 00:45:22 +1000 (EST) Received: from localhost ([::1]:51024 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ua5cO-0003xq-Fo for incoming@patchwork.ozlabs.org; Wed, 08 May 2013 10:45:20 -0400 Received: from eggs.gnu.org ([208.118.235.92]:54185) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ua5c7-0003t2-9N for qemu-devel@nongnu.org; Wed, 08 May 2013 10:45:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ua5c5-0002kC-D5 for qemu-devel@nongnu.org; Wed, 08 May 2013 10:45:03 -0400 Received: from mx1.redhat.com ([209.132.183.28]:18342) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ua5Mv-0005NY-Oi for qemu-devel@nongnu.org; Wed, 08 May 2013 10:29:21 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r48ETKRI022720 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 8 May 2013 10:29:20 -0400 Received: from dhcp-200-207.str.redhat.com (dhcp-192-246.str.redhat.com [10.33.192.246]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r48ET9QR021027; Wed, 8 May 2013 10:29:19 -0400 From: Kevin Wolf To: anthony@codemonkey.ws Date: Wed, 8 May 2013 16:29:03 +0200 Message-Id: <1368023344-29731-10-git-send-email-kwolf@redhat.com> In-Reply-To: <1368023344-29731-1-git-send-email-kwolf@redhat.com> References: <1368023344-29731-1-git-send-email-kwolf@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: kwolf@redhat.com, qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 09/10] qemu-iotests: exclude vmdk and qcow from 043 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Fam Zheng 043 tests recursive backing file by changing backing file. VMDK has not implemented this yet, and qcow1 probably never will. Signed-off-by: Fam Zheng Signed-off-by: Kevin Wolf --- tests/qemu-iotests/043 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qemu-iotests/043 b/tests/qemu-iotests/043 index 3ba08dc..478773d 100755 --- a/tests/qemu-iotests/043 +++ b/tests/qemu-iotests/043 @@ -40,7 +40,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 . ./common.filter # Any format supporting backing files -_supported_fmt qcow qcow2 vmdk qed +_supported_fmt qcow2 qed _supported_proto generic _supported_os Linux