From: Stefan Weil Date: Thu, 13 Aug 2009 16:49:48 +0000 (-0300) Subject: qemu-iotests: add support for vdi format "static" option X-Git-Tag: v1.1-rc0~321^2^2~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3b5fe6e60c4e2d4b47425ba967a48cd216efd6f8;p=thirdparty%2Fqemu.git qemu-iotests: add support for vdi format "static" option VDI supports an image option 'static'. Ignore "static=off" from qemu-img output. Signed-off-by: Stefan Weil Signed-off-by: Christoph Hellwig --- diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc index 16cf77dc8c8..6ef6b512e32 100644 --- a/tests/qemu-iotests/common.rc +++ b/tests/qemu-iotests/common.rc @@ -61,8 +61,8 @@ _make_test_img() sed -e "s#$IMGFMT#IMGFMT#g" | \ sed -e "s# encryption=off##g" | \ sed -e "s# cluster_size=0##g" | \ - sed -e "s# compat6=off##g" - + sed -e "s# compat6=off##g" | \ + sed -e "s# static=off##g" } _cleanup_test_img()