summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Hajnoczi2012-07-27 10:05:21 +0200
committerKevin Wolf2012-08-06 22:39:14 +0200
commit91cf8a35e777cdbdc3bf0d39c319ac9f76b7a296 (patch)
tree20f4a8398a101b9239a9f98deddabe1e3e476e12
parentdocs: add lazy refcounts bit to qcow2 specification (diff)
downloadqemu-91cf8a35e777cdbdc3bf0d39c319ac9f76b7a296.tar.gz
qemu-91cf8a35e777cdbdc3bf0d39c319ac9f76b7a296.tar.xz
qemu-91cf8a35e777cdbdc3bf0d39c319ac9f76b7a296.zip
qemu-iotests: ignore qemu-img create lazy_refcounts output
Hide the default lazy_refcounts=off output from qemu-img like we do with other image creation options. This ensures that existing golden outputs continue to pass despite the new option that has been added. Note that this patch applies before the one that actually introduces the lazy_refcounts=on|off option. This ensures git-bisect(1) continues to work. Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--tests/qemu-iotests/common.rc3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc
index 5e3a524bc8..cc4e39bbbf 100644
--- a/tests/qemu-iotests/common.rc
+++ b/tests/qemu-iotests/common.rc
@@ -113,7 +113,8 @@ _make_test_img()
sed -e "s# table_size=0##g" | \
sed -e "s# compat='[^']*'##g" | \
sed -e "s# compat6=off##g" | \
- sed -e "s# static=off##g"
+ sed -e "s# static=off##g" | \
+ sed -e "s# lazy_refcounts=off##g"
}
_cleanup_test_img()