diff options
author | Eric Blake | 2021-05-03 23:36:00 +0200 |
---|---|---|
committer | Kevin Wolf | 2021-07-09 13:18:32 +0200 |
commit | 497a30dbb065937d67f6c43af6dd78492e1d6f6d (patch) | |
tree | 2a6244c2bd5ddf0f69f8427724713eeac1c1baba /tests/qemu-iotests/041 | |
parent | qcow2: Prohibit backing file changes in 'qemu-img amend' (diff) | |
download | qemu-497a30dbb065937d67f6c43af6dd78492e1d6f6d.tar.gz qemu-497a30dbb065937d67f6c43af6dd78492e1d6f6d.tar.xz qemu-497a30dbb065937d67f6c43af6dd78492e1d6f6d.zip |
qemu-img: Require -F with -b backing image
Back in commit d9f059aa6c (qemu-img: Deprecate use of -b without -F),
we deprecated the ability to create a file with a backing image that
requires qemu to perform format probing. Qemu can still probe older
files for backwards compatibility, but it is time to finish off the
ability to create such images, due to the potential security risk they
present. Update a couple of iotests affected by the change.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20210503213600.569128-3-eblake@redhat.com>
Reviewed-by: Connor Kuehl <ckuehl@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/041')
-rwxr-xr-x | tests/qemu-iotests/041 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/qemu-iotests/041 b/tests/qemu-iotests/041 index 5cc02b24fc..db9f5dc540 100755 --- a/tests/qemu-iotests/041 +++ b/tests/qemu-iotests/041 @@ -1295,8 +1295,10 @@ class TestReplaces(iotests.QMPTestCase): class TestFilters(iotests.QMPTestCase): def setUp(self): qemu_img('create', '-f', iotests.imgfmt, backing_img, '1M') - qemu_img('create', '-f', iotests.imgfmt, '-b', backing_img, test_img) - qemu_img('create', '-f', iotests.imgfmt, '-b', backing_img, target_img) + qemu_img('create', '-f', iotests.imgfmt, '-b', backing_img, + '-F', iotests.imgfmt, test_img) + qemu_img('create', '-f', iotests.imgfmt, '-b', backing_img, + '-F', iotests.imgfmt, target_img) qemu_io('-c', 'write -P 1 0 512k', backing_img) qemu_io('-c', 'write -P 2 512k 512k', test_img) |