mirror of https://gitee.com/openkylin/qemu.git
iotests: 046: Prepare for image locking
The qemu-img info command is executed while VM is running, add -U option to avoid the image locking error. Signed-off-by: Fam Zheng <famz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
aca7063a56
commit
55e5a3b65e
|
@ -192,7 +192,7 @@ echo "== Verify image content =="
|
||||||
|
|
||||||
function verify_io()
|
function verify_io()
|
||||||
{
|
{
|
||||||
if ($QEMU_IMG info -f "$IMGFMT" "$TEST_IMG" | grep "compat: 0.10" > /dev/null); then
|
if ($QEMU_IMG info -U -f "$IMGFMT" "$TEST_IMG" | grep "compat: 0.10" > /dev/null); then
|
||||||
# For v2 images, discarded clusters are read from the backing file
|
# For v2 images, discarded clusters are read from the backing file
|
||||||
# Keep the variable empty so that the backing file value can be used as
|
# Keep the variable empty so that the backing file value can be used as
|
||||||
# the default below
|
# the default below
|
||||||
|
|
Loading…
Reference in New Issue