From: Markus Armbruster <armbru@redhat.com>
To: Eric Blake <eblake@redhat.com>
Cc: qemu-devel@nongnu.org, "open list:IDE" <qemu-block@nongnu.org>,
John Snow <jsnow@redhat.com>,
stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH v3 08/12] qtests: convert tests to use qmp_cmd
Date: Fri, 28 Jul 2017 20:53:55 +0200 [thread overview]
Message-ID: <87k22sjsu4.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20170725211523.3998-9-eblake@redhat.com> (Eric Blake's message of "Tue, 25 Jul 2017 16:15:19 -0500")
Eric Blake <eblake@redhat.com> writes:
> Now that we have the qmp_cmd() helper, we can further simplify
> some of the tests by using it.
>
> Signed-off-by: Eric Blake <eblake@redhat.com>
> ---
> tests/device-introspect-test.c | 3 +--
> tests/ide-test.c | 2 +-
> tests/libqos/libqos.c | 5 +++--
> tests/libqos/pci-pc.c | 4 ++--
> tests/libqos/usb.c | 18 +++++++++---------
> tests/pc-cpu-test.c | 10 +++++-----
> tests/postcopy-test.c | 9 +++++----
> tests/vhost-user-test.c | 12 ++++++------
> 8 files changed, 32 insertions(+), 31 deletions(-)
>
> diff --git a/tests/device-introspect-test.c b/tests/device-introspect-test.c
> index f7162c023f..fc6d559e14 100644
> --- a/tests/device-introspect-test.c
> +++ b/tests/device-introspect-test.c
> @@ -36,8 +36,7 @@ static QList *qom_list_types(const char *implements, bool abstract)
> if (implements) {
> qdict_put_str(args, "implements", implements);
> }
> - resp = qmp("{'execute': 'qom-list-types',"
> - " 'arguments': %p }", args);
> + resp = qmp_cmd("qom-list-types", QOBJECT(args));
This one's a clear win.
> g_assert(qdict_haskey(resp, "return"));
> ret = qdict_get_qlist(resp, "return");
> QINCREF(ret);
> diff --git a/tests/ide-test.c b/tests/ide-test.c
> index ea2657d3d1..75dc472e6a 100644
> --- a/tests/ide-test.c
> +++ b/tests/ide-test.c
> @@ -651,7 +651,7 @@ static void test_retry_flush(const char *machine)
> qmp_eventwait("STOP");
>
> /* Complete the command */
> - qmp_discard_response("{'execute':'cont' }");
> + qmp_cmd_discard_response("cont", NULL);
This one isn't.
>
> /* Check registers */
> data = qpci_io_readb(dev, ide_bar, reg_device);
> diff --git a/tests/libqos/libqos.c b/tests/libqos/libqos.c
> index 42c5315423..18844617ae 100644
> --- a/tests/libqos/libqos.c
> +++ b/tests/libqos/libqos.c
> @@ -4,6 +4,7 @@
> #include "libqtest.h"
> #include "libqos/libqos.h"
> #include "libqos/pci.h"
> +#include "qapi/qmp/qjson.h"
>
> /*** Test Setup & Teardown ***/
>
> @@ -86,7 +87,7 @@ void set_context(QOSState *s)
>
> static QDict *qmp_execute(const char *command)
> {
> - return qmp("{ 'execute': %s }", command);
> + return qmp_cmd(command, NULL);
Marginal.
> }
>
> void migrate(QOSState *from, QOSState *to, const char *uri)
> @@ -106,7 +107,7 @@ void migrate(QOSState *from, QOSState *to, const char *uri)
> QDECREF(rsp);
>
> /* Issue the migrate command. */
> - rsp = qmp("{ 'execute': 'migrate', 'arguments': { 'uri': %s } }", uri);
> + rsp = qmp_cmd("migrate", qobject_from_jsonf("{ 'uri': %s }", uri));
Not a simplification. The opposite, I'm afraid.
I could become one if qmp_cmd() worked like this:
rsp = qmp_cmd("migrate", "{ 'uri': %s }", uri));
Even better if qmp_cmd("cont", "") just works. Hmm, unles gcc whines
about the empty format string.
> g_assert(qdict_haskey(rsp, "return"));
> QDECREF(rsp);
>
[More of the same snipped...]
next prev parent reply other threads:[~2017-07-28 18:54 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-25 21:15 [Qemu-devel] [PATCH v3 00/12] Clean up around qmp() and hmp() Eric Blake
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 01/12] qobject: Accept "%"PRId64 in qobject_from_jsonf() Eric Blake
2017-07-28 18:13 ` Markus Armbruster
2017-07-28 18:56 ` Eric Blake
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 02/12] qtest: Avoid passing raw strings through hmp() Eric Blake
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 03/12] qtest: Document calling conventions Eric Blake
2017-07-28 12:26 ` Stefan Hajnoczi
2017-07-28 18:32 ` Markus Armbruster
2017-07-28 19:00 ` Eric Blake
2017-07-31 8:20 ` Markus Armbruster
2017-07-31 12:22 ` Eric Blake
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 04/12] tests: Pass literal format strings directly to qmp_FOO() Eric Blake
2017-07-26 23:28 ` John Snow
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 05/12] tests: Clean up string interpolation into QMP input (simple cases) Eric Blake
2017-07-28 12:32 ` Stefan Hajnoczi
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 06/12] tests/libqos/usb: Clean up string interpolation into QMP input Eric Blake
2017-07-28 12:33 ` Stefan Hajnoczi
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 07/12] qtest: Add a new helper qmp_cmd() and friends Eric Blake
2017-07-28 12:57 ` Stefan Hajnoczi
2017-07-28 13:06 ` Eric Blake
2017-07-28 16:33 ` Eric Blake
2017-07-31 8:16 ` Markus Armbruster
2017-07-31 12:34 ` Eric Blake
2017-07-31 18:56 ` Eric Blake
2017-08-01 5:48 ` Markus Armbruster
2017-08-01 14:13 ` Eric Blake
2017-07-28 18:45 ` Markus Armbruster
2017-07-28 18:53 ` Eric Blake
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 08/12] qtests: convert tests to use qmp_cmd Eric Blake
2017-07-28 12:59 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-07-28 18:53 ` Markus Armbruster [this message]
2017-07-28 19:08 ` [Qemu-devel] " Eric Blake
2017-07-31 7:28 ` Markus Armbruster
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 09/12] tests/libqos/pci: Clean up string interpolation into QMP input Eric Blake
2017-07-28 13:05 ` Stefan Hajnoczi
2017-07-28 16:35 ` Eric Blake
2017-07-28 16:37 ` Eric Blake
2017-07-31 7:29 ` Markus Armbruster
2017-07-31 18:33 ` Eric Blake
2017-08-01 5:40 ` Markus Armbruster
2017-07-28 17:42 ` Markus Armbruster
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 10/12] tests: Clean up wait for event Eric Blake
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 11/12] tests/libqtest: Clean up how we read the QMP greeting Eric Blake
2017-07-25 21:15 ` [Qemu-devel] [PATCH v3 12/12] tests/libqtest: Enable compile-time format string checking Eric Blake
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87k22sjsu4.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=eblake@redhat.com \
--cc=jsnow@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.