aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>2020-11-30 16:40:19 +0300
committerEric Blake <eblake@redhat.com>2021-01-20 20:22:39 -0600
commit5bd04f613a224c4b774d3b84bbfa2bdca1cf6b47 (patch)
tree6c515c35aa5451427c1fbbbaa1a1ede80c05e71e /tests
parent51223cbfcccad4a6267cbc87ebb07def46d07657 (diff)
downloadqemu-5bd04f613a224c4b774d3b84bbfa2bdca1cf6b47.zip
qemu-5bd04f613a224c4b774d3b84bbfa2bdca1cf6b47.tar.gz
qemu-5bd04f613a224c4b774d3b84bbfa2bdca1cf6b47.tar.bz2
iotests.py: fix qemu_tool_pipe_and_status()
qemu_img_args variable is unrelated here. We should print just args. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20201130134024.19212-4-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.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index dcdcd03..ea5c3c5 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -101,9 +101,8 @@ def qemu_tool_pipe_and_status(tool: str, args: Sequence[str],
universal_newlines=True)
output = subp.communicate()[0]
if subp.returncode < 0:
- sys.stderr.write('%s received signal %i: %s\n'
- % (tool, -subp.returncode,
- ' '.join(qemu_img_args + list(args))))
+ cmd = ' '.join(args)
+ sys.stderr.write(f'{tool} received signal {-subp.returncode}: {cmd}\n')
return (output, subp.returncode)
def qemu_img_pipe_and_status(*args: str) -> Tuple[str, int]: