diff options
author | Fam Zheng | 2017-05-02 18:35:43 +0200 |
---|---|---|
committer | Kevin Wolf | 2017-05-11 11:08:40 +0200 |
commit | 55e5a3b65e3e8bdf2fe5e22bbd8c0c4023cef1c2 (patch) | |
tree | cddc7f2c199039b08a33cecb5aca94d831992908 /tests/qemu-iotests/046 | |
parent | iotests: 030: Prepare for image locking (diff) | |
download | qemu-55e5a3b65e3e8bdf2fe5e22bbd8c0c4023cef1c2.tar.gz qemu-55e5a3b65e3e8bdf2fe5e22bbd8c0c4023cef1c2.tar.xz qemu-55e5a3b65e3e8bdf2fe5e22bbd8c0c4023cef1c2.zip |
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>
Diffstat (limited to 'tests/qemu-iotests/046')
-rwxr-xr-x | tests/qemu-iotests/046 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/046 b/tests/qemu-iotests/046 index e528b67cc6..f2ebecf24c 100755 --- a/tests/qemu-iotests/046 +++ b/tests/qemu-iotests/046 @@ -192,7 +192,7 @@ echo "== Verify image content ==" 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 # Keep the variable empty so that the backing file value can be used as # the default below |