From: Vladimir Sementsov-Ogievskiy Date: Fri, 6 Oct 2023 15:41:23 +0000 (+0300) Subject: tests/vm/basevm.py: use cmd() instead of qmp() X-Git-Tag: v8.2.0-rc0~68^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9acd49e29e5a3e388c0de0501e1308b507fd1fc4;p=thirdparty%2Fqemu.git 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 Reviewed-by: Eric Blake Message-id: 20231006154125.1068348-14-vsementsov@yandex-team.ru Signed-off-by: John Snow --- diff --git a/tests/vm/basevm.py b/tests/vm/basevm.py index a97e23b0ce0..8aef4cff967 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" % \