[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PULL 08/17] qemu-iotests: Add iotests.img_info_log()
From: |
Kevin Wolf |
Subject: |
[Qemu-block] [PULL 08/17] qemu-iotests: Add iotests.img_info_log() |
Date: |
Wed, 30 May 2018 17:56:38 +0200 |
This adds a filter function to postprocess 'qemu-img info' input
(similar to what _img_info does), and an img_info_log() function that
calls 'qemu-img info' and logs the filtered output.
Signed-off-by: Kevin Wolf <address@hidden>
Reviewed-by: Max Reitz <address@hidden>
Reviewed-by: Jeff Cody <address@hidden>
---
tests/qemu-iotests/iotests.py | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index 2f54823db6..edcd2bb701 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -109,6 +109,12 @@ def qemu_img_pipe(*args):
sys.stderr.write('qemu-img received signal %i: %s\n' % (-exitcode, '
'.join(qemu_img_args + list(args))))
return subp.communicate()[0]
+def img_info_log(filename, filter_path=None):
+ output = qemu_img_pipe('info', '-f', imgfmt, filename)
+ if not filter_path:
+ filter_path = filename
+ log(filter_img_info(output, filter_path))
+
def qemu_io(*args):
'''Run qemu-io and return the stdout data'''
args = qemu_io_args + list(args)
@@ -210,6 +216,18 @@ def filter_testfiles(msg):
prefix = os.path.join(test_dir, "%s-" % (os.getpid()))
return msg.replace(prefix, 'TEST_DIR/PID-')
+def filter_img_info(output, filename):
+ lines = []
+ for line in output.split('\n'):
+ if 'disk size' in line or 'actual-size' in line:
+ continue
+ line = line.replace(filename, 'TEST_IMG') \
+ .replace(imgfmt, 'IMGFMT')
+ line = re.sub('iters: [0-9]+', 'iters: XXX', line)
+ line = re.sub('uuid: [-a-f0-9]+', 'uuid:
XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', line)
+ lines.append(line)
+ return '\n'.join(lines)
+
def log(msg, filters=[]):
for flt in filters:
msg = flt(msg)
--
2.13.6
- [Qemu-block] [PULL 00/17] Block layer patches, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 01/17] qcow2: Fix Coverity warning when calculating the refcount cache size, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 02/17] vdi: Fix vdi_co_do_create() return value, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 03/17] vhdx: Fix vhdx_co_create() return value, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 06/17] qemu-iotests: Add VM.get_qmp_events_filtered(), Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 05/17] block/create: Make x-blockdev-create a job, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 04/17] job: Add error message for failing jobs, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 07/17] qemu-iotests: Add VM.qmp_log(), Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 08/17] qemu-iotests: Add iotests.img_info_log(),
Kevin Wolf <=
- [Qemu-block] [PULL 09/17] qemu-iotests: Add VM.run_job(), Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 10/17] qemu-iotests: iotests.py helper for non-file protocols, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 12/17] qemu-iotests: Rewrite 207 for blockdev-create job, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 15/17] qemu-iotests: Rewrite 212 for blockdev-create job, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 13/17] qemu-iotests: Rewrite 210 for blockdev-create job, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 16/17] qemu-iotests: Rewrite 213 for blockdev-create job, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 11/17] qemu-iotests: Rewrite 206 for blockdev-create job, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 14/17] qemu-iotests: Rewrite 211 for blockdev-create job, Kevin Wolf, 2018/05/30
- [Qemu-block] [PULL 17/17] block/create: Mark blockdev-create stable, Kevin Wolf, 2018/05/30
- Re: [Qemu-block] [Qemu-devel] [PULL 00/17] Block layer patches, no-reply, 2018/05/30