aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2009-08-13 13:49:48 -0300
committerChristoph Hellwig <hch@lst.de>2009-08-13 13:49:48 -0300
commit3b220fb056de8d67acd58be9bfa200970fede050 (patch)
tree799f34231f4599339438ef711abc6a0698256f2e
parentd8a3bc04a6b3e39ea4ef4139a253a43f271b7cfa (diff)
downloadqemu-iotests-3b220fb056de8d67acd58be9bfa200970fede050.tar.gz
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>
-rw-r--r--common.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.rc b/common.rc
index 16cf77d..6ef6b51 100644
--- a/common.rc
+++ b/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()