From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46596) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VO7Hf-0006CL-Fo for qemu-devel@nongnu.org; Mon, 23 Sep 2013 10:38:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VO7HZ-0000pM-GX for qemu-devel@nongnu.org; Mon, 23 Sep 2013 10:38:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42471) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VO7HZ-0000pB-8O for qemu-devel@nongnu.org; Mon, 23 Sep 2013 10:38:37 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r8NEcaCJ032082 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 23 Sep 2013 10:38:36 -0400 From: Max Reitz Date: Mon, 23 Sep 2013 16:38:33 +0200 Message-Id: <1379947113-12476-1-git-send-email-mreitz@redhat.com> Subject: [Qemu-devel] [PATCH] qemu-iotests: Do not execute 052 with -nocache List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Stefan Hajnoczi , Max Reitz Test 052 uses qemu-io -s which will result in bdrv_open trying to create a temporary snapshot file in /tmp. However, since O_DIRECT and tmpfs do not work well together, disable this test for -nocache. Signed-off-by: Max Reitz --- tests/qemu-iotests/052 | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/qemu-iotests/052 b/tests/qemu-iotests/052 index 14a5126..49810cb 100755 --- a/tests/qemu-iotests/052 +++ b/tests/qemu-iotests/052 @@ -41,6 +41,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fmt generic _supported_proto generic _supported_os Linux +_unsupported_qemu_io_options --nocache size=128M -- 1.8.3.1