aboutsummaryrefslogtreecommitdiff
path: root/tests/check-qom-proplist.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2020-09-17 14:55:39 +0200
committerEduardo Habkost <ehabkost@redhat.com>2020-09-18 13:49:48 -0400
commitd20f616e8f8f8f8fdb04da850d9ce92880199db7 (patch)
tree8be4116314f1fb807573c36b1c8eec2eb9d58b62 /tests/check-qom-proplist.c
parent04dcf4b5db98db8023f895e1f557baf45b34735d (diff)
downloadqemu-d20f616e8f8f8f8fdb04da850d9ce92880199db7.zip
qemu-d20f616e8f8f8f8fdb04da850d9ce92880199db7.tar.gz
qemu-d20f616e8f8f8f8fdb04da850d9ce92880199db7.tar.bz2
qom: Clean up object_property_get_enum()'s error value
object_property_get_enum() is the only object_property_FOO() that is documented to return an undefined value on error. It does no such thing, actually: it returns 0 on some errors, and -1 on others. Needlessly complicated. Always return -1 on error, and adjust the contract. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Greg Kurz <groug@kaod.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20200917125540.597786-2-armbru@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'tests/check-qom-proplist.c')
-rw-r--r--tests/check-qom-proplist.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/check-qom-proplist.c b/tests/check-qom-proplist.c
index 1571606..1b76581 100644
--- a/tests/check-qom-proplist.c
+++ b/tests/check-qom-proplist.c
@@ -491,6 +491,7 @@ static void test_dummy_getenum(void)
"av",
"BadAnimal",
&err);
+ g_assert(val == -1);
error_free_or_abort(&err);
/* A non-enum property name */
@@ -498,6 +499,7 @@ static void test_dummy_getenum(void)
"iv",
"DummyAnimal",
&err);
+ g_assert(val == -1);
error_free_or_abort(&err);
object_unparent(OBJECT(dobj));