diff options
author | Michael Labiuk <michael.labiuk@virtuozzo.com> | 2022-09-30 01:35:39 +0300 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-10-11 14:06:48 +0200 |
commit | ea42a6c405269229d0923719854637425be07b31 (patch) | |
tree | d66e522890e732d53375aee299b1411260ce88c3 /tests/qtest/libqtest.h | |
parent | 770beadb984d630a89b5a7327925a4cfba4488d5 (diff) | |
download | qemu-ea42a6c405269229d0923719854637425be07b31.zip qemu-ea42a6c405269229d0923719854637425be07b31.tar.gz qemu-ea42a6c405269229d0923719854637425be07b31.tar.bz2 |
tests/x86: add helper qtest_qmp_device_del_send()
Move sending 'device_del' command to separate function.
Function can be used in case of addition action is needed to start
actual removing device after sending command.
Signed-off-by: Michael Labiuk <michael.labiuk@virtuozzo.com>
Message-Id: <20220929223547.1429580-2-michael.labiuk@virtuozzo.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
[thuth: Fixed typo]
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/libqtest.h')
-rw-r--r-- | tests/qtest/libqtest.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/qtest/libqtest.h b/tests/qtest/libqtest.h index 3abc759..65c040e 100644 --- a/tests/qtest/libqtest.h +++ b/tests/qtest/libqtest.h @@ -762,11 +762,21 @@ void qtest_qmp_add_client(QTestState *qts, const char *protocol, int fd); #endif /* _WIN32 */ /** + * qtest_qmp_device_del_send: + * @qts: QTestState instance to operate on + * @id: Identification string + * + * Generic hot-unplugging test via the device_del QMP command. + */ +void qtest_qmp_device_del_send(QTestState *qts, const char *id); + +/** * qtest_qmp_device_del: * @qts: QTestState instance to operate on * @id: Identification string * * Generic hot-unplugging test via the device_del QMP command. + * Waiting for command completion event. */ void qtest_qmp_device_del(QTestState *qts, const char *id); |