From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WCnoP-00049l-PE for qemu-devel@nongnu.org; Mon, 10 Feb 2014 05:10:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WCnoJ-0005Pw-Qd for qemu-devel@nongnu.org; Mon, 10 Feb 2014 05:10:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:22415) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WCnoJ-0005ND-CU for qemu-devel@nongnu.org; Mon, 10 Feb 2014 05:09:55 -0500 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 s1AA9rFG029419 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 10 Feb 2014 05:09:54 -0500 From: Fam Zheng Date: Mon, 10 Feb 2014 18:09:59 +0800 Message-Id: <1392026999-10531-1-git-send-email-famz@redhat.com> Subject: [Qemu-devel] [PATCH] qemu-iotests: Exclude vmdk from 077 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , stefanha@redhat.com, Max Reitz The big lock implementation in block/vmdk.c causes dead lock with dependent breakpoints in test_io(), so the test hangs. Disable it for now. Signed-off-by: Fam Zheng --- tests/qemu-iotests/077 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/qemu-iotests/077 b/tests/qemu-iotests/077 index bbf7b51..77741b4 100755 --- a/tests/qemu-iotests/077 +++ b/tests/qemu-iotests/077 @@ -42,6 +42,10 @@ _supported_fmt generic _supported_proto generic _supported_os Linux +if [ "$IMGFMT" = "vmdk" ]; then + _notrun "not suitable for this image format: $IMGFMT" +fi + CLUSTER_SIZE=4k size=128M -- 1.8.5.4