Starting from QEMU-6.2 enum members can be deprecated. Add support to
the validator.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
tests/testutilsqemuschema.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/testutilsqemuschema.c b/tests/testutilsqemuschema.c
index 38dd0e14bc..b4b5eb1ed6 100644
--- a/tests/testutilsqemuschema.c
+++ b/tests/testutilsqemuschema.c
@@ -376,6 +376,12 @@ testQEMUSchemaValidateEnum(virJSONValue *obj,
virJSONValue *member = virJSONValueArrayGet(members, i);
if (STREQ_NULLABLE(objstr, virJSONValueObjectGetString(member,
"name"))) {
+ int rc;
+
+ /* the new 'members' array allows us to check deprecations */
+ if ((rc = testQEMUSchemaValidateDeprecated(member, objstr, ctxt)) <
0)
+ return rc;
+
virBufferAsprintf(ctxt->debug, "'%s' OK",
NULLSTR(objstr));
return 0;
}
--
2.31.1