aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>2020-11-30 16:40:20 +0300
committerEric Blake <eblake@redhat.com>2021-01-20 20:24:51 -0600
commitf874e7fa3b6583c79a74aea9e781af920ddd8091 (patch)
tree6ee6d96f2cca617cde7427c866250bcfbc3d755f /tests
parent5bd04f613a224c4b774d3b84bbfa2bdca1cf6b47 (diff)
downloadqemu-f874e7fa3b6583c79a74aea9e781af920ddd8091.zip
qemu-f874e7fa3b6583c79a74aea9e781af920ddd8091.tar.gz
qemu-f874e7fa3b6583c79a74aea9e781af920ddd8091.tar.bz2
iotests.py: qemu_io(): reuse qemu_tool_pipe_and_status()
Just drop code duplication. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20201130134024.19212-5-vsementsov@virtuozzo.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/qemu-iotests/iotests.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index ea5c3c5..2e89c0a 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -188,14 +188,7 @@ def img_info_log(filename, filter_path=None, imgopts=False, extra_args=()):
def qemu_io(*args):
'''Run qemu-io and return the stdout data'''
args = qemu_io_args + list(args)
- subp = subprocess.Popen(args, stdout=subprocess.PIPE,
- stderr=subprocess.STDOUT,
- universal_newlines=True)
- output = subp.communicate()[0]
- if subp.returncode < 0:
- sys.stderr.write('qemu-io received signal %i: %s\n'
- % (-subp.returncode, ' '.join(args)))
- return output
+ return qemu_tool_pipe_and_status('qemu-io', args)[0]
def qemu_io_log(*args):
result = qemu_io(*args)