From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43043) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXyTn-0006rV-0m for qemu-devel@nongnu.org; Fri, 25 May 2012 13:39:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXyTk-0000Eo-U0 for qemu-devel@nongnu.org; Fri, 25 May 2012 13:39:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47639) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXyTk-0000ER-Mc for qemu-devel@nongnu.org; Fri, 25 May 2012 13:39:08 -0400 From: Kevin Wolf Date: Fri, 25 May 2012 19:38:51 +0200 Message-Id: <1337967534-12166-8-git-send-email-kwolf@redhat.com> In-Reply-To: <1337967534-12166-1-git-send-email-kwolf@redhat.com> References: <1337967534-12166-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 07/10] qemu-iotests: mark 035 qcow2-only List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Stefan Hajnoczi The 035 parallel aio write test relies on knowledge of qcow2 metadata layout to stress parallel L2 table accesses. This only works for qcow2 unless we add additional calculations for qed or other formats. Mark this test as qcow2-only. Note that the test is strictly speaking non-deterministic although the output produced is reliable with qcow2. This is because the aio_write command returns before the aio write request has completed. Completions can occur at any time afterwards and cause a message to be printed. Therefore the exact output of this test is not deterministic but we seem to get away with it for qcow2 (maybe due to coroutine and main loop scheduling). Signed-off-by: Stefan Hajnoczi Signed-off-by: Kevin Wolf --- tests/qemu-iotests/035 | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/qemu-iotests/035 b/tests/qemu-iotests/035 index 56616a1..9d2d347 100755 --- a/tests/qemu-iotests/035 +++ b/tests/qemu-iotests/035 @@ -39,7 +39,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 . ./common.rc . ./common.filter -_supported_fmt generic +_supported_fmt qcow2 _supported_proto generic _supported_os Linux -- 1.7.6.5