From: Markus Armbruster <armbru@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>
Cc: "Paolo Bonzini" <pbonzini@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
qemu-devel@nongnu.org,
"Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: Re: [PATCH v3 08/19] qlit: Move qlit_equal_qobject() reference values to array
Date: Tue, 24 Nov 2020 10:51:34 +0100 [thread overview]
Message-ID: <87360zozfd.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20201123194818.2773508-9-ehabkost@redhat.com> (Eduardo Habkost's message of "Mon, 23 Nov 2020 14:48:07 -0500")
Eduardo Habkost <ehabkost@redhat.com> writes:
> Add an array of values to qlit_equal_qobject_test(), so we can
> extend the test case to compare multiple literals, not just the
> ones at the existing `qlit` and `qlit_foo` variables.
>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
> This is a new patch added in v3 of this series.
> ---
> tests/check-qlit.c | 26 +++++++++++++++++++-------
> 1 file changed, 19 insertions(+), 7 deletions(-)
>
> diff --git a/tests/check-qlit.c b/tests/check-qlit.c
> index 24ac21395c..b1cfbddb17 100644
> --- a/tests/check-qlit.c
> +++ b/tests/check-qlit.c
> @@ -29,11 +29,6 @@ static QLitObject qlit = QLIT_QDICT(((QLitDictEntry[]) {
> { },
> }));
>
> -static QLitObject qlit_foo = QLIT_QDICT(((QLitDictEntry[]) {
> - { "foo", QLIT_QNUM_INT(42) },
> - { },
> -}));
> -
> static QObject *make_qobject(void)
> {
> QDict *qdict = qdict_new();
> @@ -53,16 +48,33 @@ static QObject *make_qobject(void)
>
> static void qlit_equal_qobject_test(void)
> {
> + /* Each entry in the values[] array should be different from the others */
> + QLitObject values[] = {
> + qlit,
> + QLIT_QDICT(((QLitDictEntry[]) {
> + { "foo", QLIT_QNUM_INT(42) },
> + { },
> + })),
> + };
> + int i;
> QObject *qobj = make_qobject();
>
> g_assert(qlit_equal_qobject(&qlit, qobj));
>
> - g_assert(!qlit_equal_qobject(&qlit_foo, qobj));
> -
> qdict_put(qobject_to(QDict, qobj), "bee", qlist_new());
> g_assert(!qlit_equal_qobject(&qlit, qobj));
>
> qobject_unref(qobj);
> +
> + for (i = 0; i < ARRAY_SIZE(values); i++) {
> + int j;
I'd prefer to declare this one together with @i.
> + QObject *o = qobject_from_qlit(&values[i]);
Blank line, if you don't mind.
> + for (j = 0; j < ARRAY_SIZE(values); j++) {
> + g_assert(qlit_equal_qobject(&values[j], o) == (i == j));
> + }
> + qobject_unref(o);
> + }
> +
> }
>
> static void qlit_equal_large_qnum_test(void)
next prev parent reply other threads:[~2020-11-24 9:54 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-23 19:47 [PATCH v3 00/19] qom: Use qlit to represent property defaults Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 01/19] qnum: Make qnum_get_double() get const pointer Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 02/19] qnum: Make num_x/num_y variables at qnum_is_equal() const Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 03/19] qnum: QNumValue type for QNum value literals Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 04/19] qnum: qnum_value_is_equal() function Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 05/19] qlit: Use qnum_value_is_equal() when comparing QNums Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 06/19] qlit: Rename QLIT_QNUM to QLIT_QNUM_INT Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 07/19] qlit: Use QNumValue to represent QNums Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 08/19] qlit: Move qlit_equal_qobject() reference values to array Eduardo Habkost
2020-11-24 9:51 ` Markus Armbruster [this message]
2020-11-24 14:47 ` Eduardo Habkost
2020-11-24 15:17 ` Markus Armbruster
2020-11-23 19:48 ` [PATCH v3 09/19] qlit: Add more test literals to qlit_equal_qobject() test case Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 10/19] qlit: Support all types of QNums Eduardo Habkost
2020-11-24 9:55 ` Markus Armbruster
2020-11-24 10:56 ` Paolo Bonzini
2020-11-24 12:22 ` Markus Armbruster
2020-11-24 15:03 ` Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 11/19] qom: field_prop_set_default_value() helper Eduardo Habkost
2020-11-24 9:58 ` Markus Armbruster
2020-11-24 14:44 ` Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 12/19] qom: Replace defval value in Property with QLitObject Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 13/19] qom: Fix documentation of UUID property type Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 14/19] qom: Don't ignore defval on UUID property Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 15/19] qom: Make object_property_set_default() public Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 16/19] qom: Make PropertyInfo.set_default_value optional Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 17/19] qom: Delete field_prop_set_default_value_*int() Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 18/19] qom: Delete set_default_uuid() Eduardo Habkost
2020-11-23 19:48 ` [PATCH v3 19/19] qom: Delete set_default_value_bool() Eduardo Habkost
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=87360zozfd.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=ehabkost@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).