diff options
| author | John Snow <jsnow@redhat.com> | 2022-04-18 17:15:02 -0400 |
|---|---|---|
| committer | Hanna Reitz <hreitz@redhat.com> | 2022-04-25 14:30:32 +0200 |
| commit | 23d44dcb7c247347a0c3e4565c4cd7e4d2a5183a (patch) | |
| tree | a702e8156546d45a228a5f19d8b4b5aa4213ead3 /tests/qemu-iotests/iotests.py | |
| parent | db1646a63955aec075819d047a95ce9c074cffa6 (diff) | |
| download | focaccia-qemu-23d44dcb7c247347a0c3e4565c4cd7e4d2a5183a.tar.gz focaccia-qemu-23d44dcb7c247347a0c3e4565c4cd7e4d2a5183a.zip | |
iotests: remove qemu_io_pipe_and_status()
I know we just added it, sorry. This is done in favor of qemu_io() which *also* returns the console output and status, but with more robust error handling on failure. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Hanna Reitz <hreitz@redhat.com> Message-Id: <20220418211504.943969-11-jsnow@redhat.com> Signed-off-by: Hanna Reitz <hreitz@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/iotests.py')
| -rw-r--r-- | tests/qemu-iotests/iotests.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index 06d35af21a..a13e6fa876 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -364,9 +364,6 @@ def qemu_io(*args: str, check: bool = True, combine_stdio: bool = True return qemu_tool(*qemu_io_wrap_args(args), check=check, combine_stdio=combine_stdio) -def qemu_io_pipe_and_status(*args): - return qemu_tool_pipe_and_status('qemu-io', qemu_io_wrap_args(args)) - def qemu_io_log(*args: str) -> 'subprocess.CompletedProcess[str]': result = qemu_io(*args, check=False) log(result.stdout, filters=[filter_testfiles, filter_qemu_io]) |