History log of /openbmc/qemu/scripts/python_qmp_updater.py (Results 1 – 1 of 1)
Revision Date Author Comments
# 25ad2cf6 06-Oct-2023 Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>

scripts: add python_qmp_updater.py

A script, to update the pattern

result = self.vm.qmp(...)
self.assert_qmp(result, 'return', {})

(and some similar ones) into

self.vm.cmd(...)

Used

scripts: add python_qmp_updater.py

A script, to update the pattern

result = self.vm.qmp(...)
self.assert_qmp(result, 'return', {})

(and some similar ones) into

self.vm.cmd(...)

Used in the next commit
"python: use vm.cmd() instead of vm.qmp() where appropriate"

Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 20231006154125.1068348-15-vsementsov@yandex-team.ru
Signed-off-by: John Snow <jsnow@redhat.com>

show more ...