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 <weil@mail.berlios.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
Stefan Weil 2009-08-13 13:49:48 -03:00 committed by Kevin Wolf
parent f00851a10f
commit 3b5fe6e60c
1 changed files with 2 additions and 2 deletions

View File

@ -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()