diff options
| author | Don Slutz | 2014-05-05 20:03:07 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2014-06-05 18:20:38 +0200 |
| commit | 711e2f1e9ecad845e142fdddbbf1e8037bce902b (patch) | |
| tree | 117c9cf88ac59cafc20f747e6c3e1e1adfda4cad | |
| parent | qdev: Display warning about unused -global (diff) | |
| download | qemu-711e2f1e9ecad845e142fdddbbf1e8037bce902b.tar.gz qemu-711e2f1e9ecad845e142fdddbbf1e8037bce902b.tar.xz qemu-711e2f1e9ecad845e142fdddbbf1e8037bce902b.zip | |
qdev: Add test of qdev_prop_check_global
This will generate a warning from "make check":
...
GTESTER tests/test-qdev-global-props
Warning: "-global dynamic-prop-type-bad.prop3=103" not used
GTESTER tests/check-qom-interface
...
If the warning is not generated, the test will fail.
Signed-off-by: Don Slutz <dslutz@verizon.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
| -rw-r--r-- | tests/test-qdev-global-props.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test-qdev-global-props.c b/tests/test-qdev-global-props.c index e4ad173d72..2bef04c76f 100644 --- a/tests/test-qdev-global-props.c +++ b/tests/test-qdev-global-props.c @@ -150,8 +150,10 @@ static void test_dynamic_globalprop(void) static GlobalProperty props[] = { { TYPE_DYNAMIC_PROPS, "prop1", "101" }, { TYPE_DYNAMIC_PROPS, "prop2", "102" }, + { TYPE_DYNAMIC_PROPS"-bad", "prop3", "103", true }, {} }; + int all_used; qdev_prop_register_global_list(props); @@ -160,6 +162,8 @@ static void test_dynamic_globalprop(void) g_assert_cmpuint(mt->prop1, ==, 101); g_assert_cmpuint(mt->prop2, ==, 102); + all_used = qdev_prop_check_global(); + g_assert_cmpuint(all_used, ==, 1); } int main(int argc, char **argv) |
