Signed-off-by: Max Reitz <mre...@redhat.com> --- tests/qemu-iotests/234 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/tests/qemu-iotests/234 b/tests/qemu-iotests/234 index 3de6ab2341..f200af3f27 100755 --- a/tests/qemu-iotests/234 +++ b/tests/qemu-iotests/234 @@ -21,19 +21,20 @@ # that is built with individually created nodes import iotests +from iotests import create_test_image import os iotests.script_initialize(supported_fmts=['qcow2']) -with iotests.FilePath('img') as img_path, \ - iotests.FilePath('backing') as backing_path, \ +with iotests.ImagePath('img') as img_path, \ + iotests.ImagePath('backing') as backing_path, \ iotests.FilePath('mig_fifo_a') as fifo_a, \ iotests.FilePath('mig_fifo_b') as fifo_b, \ iotests.VM(path_suffix='a') as vm_a, \ iotests.VM(path_suffix='b') as vm_b: - iotests.qemu_img_pipe('create', '-f', iotests.imgfmt, backing_path, '64M') - iotests.qemu_img_pipe('create', '-f', iotests.imgfmt, img_path, '64M') + create_test_image(backing_path, '64M') + create_test_image(img_path, '64M') os.mkfifo(fifo_a) os.mkfifo(fifo_b) -- 2.21.0