diff options
author | Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 2018-03-30 17:44:12 +0300 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2018-04-03 17:13:51 +0200 |
commit | eb42e7193e74a8e51603d0190340d4983eb58002 (patch) | |
tree | fb3ccaec3b78f9f111007bbc0f03c1d30691ba66 /tests | |
parent | 627f607e3dddb23cef69374c8bfb09a33d19926a (diff) |
iotests: fix 208 for luks format
Support luks images creatins like in 205
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/qemu-iotests/208 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/208 b/tests/qemu-iotests/208 index 4e82b96c82..18f59ada94 100755 --- a/tests/qemu-iotests/208 +++ b/tests/qemu-iotests/208 @@ -28,7 +28,7 @@ with iotests.FilePath('disk.img') as disk_img_path, \ iotests.VM() as vm: img_size = '10M' - iotests.qemu_img_pipe('create', '-f', iotests.imgfmt, disk_img_path, img_size) + iotests.qemu_img_create('-f', iotests.imgfmt, disk_img_path, img_size) iotests.log('Launching VM...') (vm.add_drive(disk_img_path, 'node-name=drive0-node', interface='none') |