Signed-off-by: Max Reitz <mre...@redhat.com> --- tests/qemu-iotests/216 | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/tests/qemu-iotests/216 b/tests/qemu-iotests/216 index 7574bcc09f..18f2611da6 100755 --- a/tests/qemu-iotests/216 +++ b/tests/qemu-iotests/216 @@ -20,7 +20,7 @@ # Creator/Owner: Max Reitz <mre...@redhat.com> import iotests -from iotests import log, qemu_img, qemu_io_silent +from iotests import log, create_test_image, qemu_io_silent # Need backing file support iotests.script_initialize(supported_fmts=['qcow2', 'qcow', 'qed', 'vmdk']) @@ -42,17 +42,16 @@ log('') # A COR filter node, however, can request the proper permissions for # its child and therefore is not hit by this issue. -with iotests.FilePath('base.img') as base_img_path, \ - iotests.FilePath('top.img') as top_img_path, \ +with iotests.ImagePath('base.img') as base_img_path, \ + iotests.ImagePath('top.img') as top_img_path, \ iotests.VM() as vm: log('--- Setting up images ---') log('') - assert qemu_img('create', '-f', iotests.imgfmt, base_img_path, '64M') == 0 + assert create_test_image(base_img_path, '64M') == 0 assert qemu_io_silent(base_img_path, '-c', 'write -P 1 0M 1M') == 0 - assert qemu_img('create', '-f', iotests.imgfmt, '-b', base_img_path, - top_img_path) == 0 + assert create_test_image(top_img_path, backing_file=base_img_path) == 0 assert qemu_io_silent(top_img_path, '-c', 'write -P 2 1M 1M') == 0 log('Done') -- 2.21.0