From: Markus Armbruster <armbru@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>
Cc: qemu-devel@nongnu.org, Marcel Apfelbaum <marcel@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Igor Mammedov <imammedo@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 03/10] vl: Reject invalid class names on -global
Date: Thu, 23 Jun 2016 09:52:12 +0200 [thread overview]
Message-ID: <874m8k736b.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <1466437983-27133-4-git-send-email-ehabkost@redhat.com> (Eduardo Habkost's message of "Mon, 20 Jun 2016 12:52:56 -0300")
Eduardo Habkost <ehabkost@redhat.com> writes:
> Instead of just printing a warning very late, reject obviously
> invalid -global arguments by validating the class name.
>
> Update test-qdev-global-props to not expect class name validation
> to be performed in qdev_prop_check_globals().
>
> Reviewed-by: Markus Armbruster <armbru@redhat.com>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
> Changes v1 -> v2:
> * Fix test-qdev-global-props unit test
> * Simplify object_dynamic_cast() check
> * Suggested-by: Markus Armbruster <armbru@redhat.com>
> ---
> hw/core/qdev-properties.c | 7 -------
> tests/test-qdev-global-props.c | 10 ----------
> vl.c | 20 +++++++++++++++++---
> 3 files changed, 17 insertions(+), 20 deletions(-)
>
> diff --git a/hw/core/qdev-properties.c b/hw/core/qdev-properties.c
> index c10edee..64e17aa 100644
> --- a/hw/core/qdev-properties.c
> +++ b/hw/core/qdev-properties.c
> @@ -1052,13 +1052,6 @@ int qdev_prop_check_globals(void)
> continue;
> }
> oc = object_class_by_name(prop->driver);
> - oc = object_class_dynamic_cast(oc, TYPE_DEVICE);
> - if (!oc) {
> - error_report("Warning: global %s.%s has invalid class name",
> - prop->driver, prop->property);
> - ret = 1;
> - continue;
> - }
> dc = DEVICE_CLASS(oc);
> if (!dc->hotpluggable && !prop->used) {
> error_report("Warning: global %s.%s=%s not used",
> diff --git a/tests/test-qdev-global-props.c b/tests/test-qdev-global-props.c
> index 48e5b73..db77ad9 100644
> --- a/tests/test-qdev-global-props.c
> +++ b/tests/test-qdev-global-props.c
> @@ -201,10 +201,8 @@ static void test_dynamic_globalprop_subprocess(void)
> static GlobalProperty props[] = {
> { TYPE_DYNAMIC_PROPS, "prop1", "101", true },
> { TYPE_DYNAMIC_PROPS, "prop2", "102", true },
> - { TYPE_DYNAMIC_PROPS"-bad", "prop3", "103", true },
> { TYPE_UNUSED_HOTPLUG, "prop4", "104", true },
> { TYPE_UNUSED_NOHOTPLUG, "prop5", "105", true },
> - { TYPE_NONDEVICE, "prop6", "106", true },
> {}
> };
> int all_used;
> @@ -222,8 +220,6 @@ static void test_dynamic_globalprop_subprocess(void)
> g_assert(props[1].used);
> g_assert(!props[2].used);
> g_assert(!props[3].used);
> - g_assert(!props[4].used);
> - g_assert(!props[5].used);
> }
>
> static void test_dynamic_globalprop(void)
> @@ -232,10 +228,8 @@ static void test_dynamic_globalprop(void)
> g_test_trap_assert_passed();
> g_test_trap_assert_stderr_unmatched("*prop1*");
> g_test_trap_assert_stderr_unmatched("*prop2*");
> - g_test_trap_assert_stderr("*Warning: global dynamic-prop-type-bad.prop3 has invalid class name\n*");
> g_test_trap_assert_stderr_unmatched("*prop4*");
> g_test_trap_assert_stderr("*Warning: global nohotplug-type.prop5=105 not used\n*");
> - g_test_trap_assert_stderr("*Warning: global nondevice-type.prop6 has invalid class name\n*");
> g_test_trap_assert_stdout("");
> }
>
> @@ -246,10 +240,8 @@ static void test_dynamic_globalprop_nouser_subprocess(void)
> static GlobalProperty props[] = {
> { TYPE_DYNAMIC_PROPS, "prop1", "101" },
> { TYPE_DYNAMIC_PROPS, "prop2", "102" },
> - { TYPE_DYNAMIC_PROPS"-bad", "prop3", "103" },
> { TYPE_UNUSED_HOTPLUG, "prop4", "104" },
> { TYPE_UNUSED_NOHOTPLUG, "prop5", "105" },
> - { TYPE_NONDEVICE, "prop6", "106" },
> {}
> };
> int all_used;
> @@ -267,8 +259,6 @@ static void test_dynamic_globalprop_nouser_subprocess(void)
> g_assert(props[1].used);
> g_assert(!props[2].used);
> g_assert(!props[3].used);
> - g_assert(!props[4].used);
> - g_assert(!props[5].used);
> }
>
The rest of the patch turns a warning into an error, but the test update
*drops* the affected test cases. Shouldn't we test the error instead?
To keep my R-by, you can either do that, or mention the loss of test
cases in the commit message.
[...]
next prev parent reply other threads:[~2016-06-23 7:52 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-20 15:52 [Qemu-devel] [PATCH v2 00/10] globals: Clean up validation and error checking Eduardo Habkost
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 01/10] qdev: Don't stop applying globals on first error Eduardo Habkost
2016-06-23 7:40 ` Markus Armbruster
2016-06-23 11:36 ` Eduardo Habkost
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 02/10] qdev: Eliminate qemu_add_globals() function Eduardo Habkost
2016-06-23 7:42 ` Markus Armbruster
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 03/10] vl: Reject invalid class names on -global Eduardo Habkost
2016-06-23 7:52 ` Markus Armbruster [this message]
2016-06-23 11:40 ` Eduardo Habkost
2016-06-23 13:30 ` Eduardo Habkost
2016-06-23 11:45 ` Eduardo Habkost
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 04/10] qdev: GlobalProperty.errp field Eduardo Habkost
2016-06-21 8:11 ` Igor Mammedov
2016-06-21 13:32 ` Eduardo Habkost
2016-06-23 7:54 ` Markus Armbruster
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 05/10] machine: Add machine_register_compat_props() function Eduardo Habkost
2016-06-23 7:55 ` Markus Armbruster
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 06/10] vl: Set errp to &error_abort on machine compat_props Eduardo Habkost
2016-06-23 7:56 ` Markus Armbruster
2016-06-20 15:53 ` [Qemu-devel] [PATCH v2 07/10] qdev: Eliminate "global not used" warning Eduardo Habkost
2016-06-21 12:54 ` Igor Mammedov
2016-06-23 8:17 ` Markus Armbruster
2016-06-23 12:10 ` Eduardo Habkost
2016-06-20 15:53 ` [Qemu-devel] [PATCH v2 08/10] qdev: Eliminate GlobalProperty 'used' and 'user_provided' fields Eduardo Habkost
2016-06-21 12:59 ` Igor Mammedov
2016-06-20 15:53 ` [Qemu-devel] [PATCH v2 09/10] qdev: Remove qdev_prop_register_global_list() Eduardo Habkost
2016-06-21 9:09 ` Marcel Apfelbaum
2016-06-23 8:19 ` Markus Armbruster
2016-06-20 15:53 ` [Qemu-devel] [PATCH v2 10/10] machine: Skip global registration for non-existing classes Eduardo Habkost
2016-06-21 9:10 ` Marcel Apfelbaum
2016-06-23 8:26 ` Markus Armbruster
2016-06-23 11:32 ` Eduardo Habkost
2016-06-23 11:55 ` Eduardo Habkost
2016-06-23 16:24 ` Markus Armbruster
2016-06-22 22:12 ` [Qemu-devel] [PATCH v2 00/10] globals: Clean up validation and error checking Eduardo Habkost
2016-06-23 13:38 ` 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=874m8k736b.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=marcel@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 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.