[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/14] iotests/remove-bitmap-from-backing: use qemu_img_info()
From: |
John Snow |
Subject: |
[PATCH 04/14] iotests/remove-bitmap-from-backing: use qemu_img_info() |
Date: |
Tue, 8 Mar 2022 22:53:57 -0500 |
This removes two more usages of qemu_img_pipe() and replaces them with
calls to qemu_img(), which provides better diagnostic information on
failure.
Signed-off-by: John Snow <jsnow@redhat.com>
---
tests/qemu-iotests/tests/remove-bitmap-from-backing | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/qemu-iotests/tests/remove-bitmap-from-backing
b/tests/qemu-iotests/tests/remove-bitmap-from-backing
index fee3141340..15be32dcb9 100755
--- a/tests/qemu-iotests/tests/remove-bitmap-from-backing
+++ b/tests/qemu-iotests/tests/remove-bitmap-from-backing
@@ -19,7 +19,7 @@
#
import iotests
-from iotests import log, qemu_img_create, qemu_img, qemu_img_pipe
+from iotests import log, qemu_img_create, qemu_img, qemu_img_info
iotests.script_initialize(supported_fmts=['qcow2'],
unsupported_imgopts=['compat'])
@@ -33,7 +33,7 @@ qemu_img_create('-f', iotests.imgfmt, '-b', base,
qemu_img('bitmap', '--add', base, 'bitmap0')
# Just assert that our method of checking bitmaps in the image works.
-assert 'bitmaps' in qemu_img_pipe('info', base)
+assert 'bitmaps' in qemu_img_info(base)['format-specific']['data']
vm = iotests.VM().add_drive(top, 'backing.node-name=base')
vm.launch()
@@ -68,5 +68,5 @@ if result != {'return': {}}:
vm.shutdown()
-if 'bitmaps' in qemu_img_pipe('info', base):
+if 'bitmaps' in qemu_img_info(base)['format-specific']['data']:
log('ERROR: Bitmap is still in the base image')
--
2.34.1
- [PATCH 00/14] iotests: ensure all qemu-img calls are either checked or logged, John Snow, 2022/03/08
- [PATCH 03/14] iotests: add qemu_img_info(), John Snow, 2022/03/08
- [PATCH 02/14] iotests: use qemu_img_json() when applicable, John Snow, 2022/03/08
- [PATCH 04/14] iotests/remove-bitmap-from-backing: use qemu_img_info(),
John Snow <=
- [PATCH 01/14] iotests: add qemu_img_json(), John Snow, 2022/03/08
- [PATCH 06/14] iotests: change supports_quorum to use qemu_img, John Snow, 2022/03/08
- [PATCH 05/14] iotests: add qemu_img_map() function, John Snow, 2022/03/08