diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2013-10-30 14:54:32 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-11-07 13:58:43 +0100 |
commit | 0d1aa05e9eba2437fdcdfbaa846c850c986bf7c6 (patch) | |
tree | f3e288737dd2885353c75b1d5ead6a49cccdc530 /tests/libqtest.h | |
parent | ec9c10d29c6bb5613a680af62f5825d3bb2d31d4 (diff) |
libqtest: rename qmp() to qmp_discard_response()
Existing qmp() callers do not expect a response object. In order to
implement real QMP test cases it will be necessary to inspect the
response object.
Rename qmp() to qmp_discard_response(). Later patches will introduce a
qmp() function that returns the response object and tests that use it.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/libqtest.h')
-rw-r--r-- | tests/libqtest.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/libqtest.h b/tests/libqtest.h index a6e99bd023..4f1b060073 100644 --- a/tests/libqtest.h +++ b/tests/libqtest.h @@ -44,23 +44,23 @@ QTestState *qtest_init(const char *extra_args); void qtest_quit(QTestState *s); /** - * qtest_qmp: + * qtest_qmp_discard_response: * @s: #QTestState instance to operate on. * @fmt...: QMP message to send to qemu * - * Sends a QMP message to QEMU + * Sends a QMP message to QEMU and consumes the response. */ -void qtest_qmp(QTestState *s, const char *fmt, ...); +void qtest_qmp_discard_response(QTestState *s, const char *fmt, ...); /** - * qtest_qmpv: + * qtest_qmpv_discard_response: * @s: #QTestState instance to operate on. * @fmt: QMP message to send to QEMU * @ap: QMP message arguments * - * Sends a QMP message to QEMU. + * Sends a QMP message to QEMU and consumes the response. */ -void qtest_qmpv(QTestState *s, const char *fmt, va_list ap); +void qtest_qmpv_discard_response(QTestState *s, const char *fmt, va_list ap); /** * qtest_get_irq: @@ -331,17 +331,17 @@ static inline void qtest_end(void) } /** - * qmp: + * qmp_discard_response: * @fmt...: QMP message to send to qemu * - * Sends a QMP message to QEMU + * Sends a QMP message to QEMU and consumes the response. */ -static inline void qmp(const char *fmt, ...) +static inline void qmp_discard_response(const char *fmt, ...) { va_list ap; va_start(ap, fmt); - qtest_qmpv(global_qtest, fmt, ap); + qtest_qmpv_discard_response(global_qtest, fmt, ap); va_end(ap); } |