aboutsummaryrefslogtreecommitdiff
path: root/tests/vm
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>2023-10-06 18:41:23 +0300
committerJohn Snow <jsnow@redhat.com>2023-10-12 14:21:44 -0400
commit9acd49e29e5a3e388c0de0501e1308b507fd1fc4 (patch)
tree157546b2bdb9ad0fd84519a8b390209f59ddc11e /tests/vm
parent39995e21261d19e44db00e0ebce2c5616703b29a (diff)
downloadqemu-9acd49e29e5a3e388c0de0501e1308b507fd1fc4.zip
qemu-9acd49e29e5a3e388c0de0501e1308b507fd1fc4.tar.gz
qemu-9acd49e29e5a3e388c0de0501e1308b507fd1fc4.tar.bz2
tests/vm/basevm.py: use cmd() instead of qmp()
We don't expect failure here and need 'result' object. cmd() is better in this case. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20231006154125.1068348-14-vsementsov@yandex-team.ru Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'tests/vm')
-rw-r--r--tests/vm/basevm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/basevm.py b/tests/vm/basevm.py
index a97e23b..8aef4cf 100644
--- a/tests/vm/basevm.py
+++ b/tests/vm/basevm.py
@@ -312,8 +312,8 @@ class BaseVM(object):
self._guest = guest
# Init console so we can start consuming the chars.
self.console_init()
- usernet_info = guest.qmp("human-monitor-command",
- command_line="info usernet").get("return")
+ usernet_info = guest.cmd("human-monitor-command",
+ command_line="info usernet")
self.ssh_port = get_info_usernet_hostfwd_port(usernet_info)
if not self.ssh_port:
raise Exception("Cannot find ssh port from 'info usernet':\n%s" % \