summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-05-24 16:26:51 +0100
committerKevin Wolf <kwolf@redhat.com>2012-05-25 18:13:44 +0200
commitb84762e2456e15c091c25aff052afb8766394acd (patch)
treeef24b275fa5c8a2bae9ff78260ac3a50a748b8f3
parentdf021791897cb7a171710dadf66648b4379de627 (diff)
downloadfocaccia-qemu-b84762e2456e15c091c25aff052afb8766394acd.tar.gz
focaccia-qemu-b84762e2456e15c091c25aff052afb8766394acd.zip
qemu-iotests: mark 035 qcow2-only
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 <stefanha@linux.vnet.ibm.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rwxr-xr-xtests/qemu-iotests/0352
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/035 b/tests/qemu-iotests/035
index 56616a1b7d..9d2d3472e7 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