[PATCH v2 8/8] testQEMUSchemaValidateEnum: Validate deprecated members

Peter Krempa pkrempa at redhat.com
Fri Oct 29 12:39:25 UTC 2021


Starting from QEMU-6.2 enum members can be deprecated. Add support to
the validator.

Signed-off-by: Peter Krempa <pkrempa at redhat.com>
Reviewed-by: Michal Privoznik <mprivozn at redhat.com>
---
 tests/testutilsqemuschema.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tests/testutilsqemuschema.c b/tests/testutilsqemuschema.c
index aaa0fdaea9..4a0fb8d944 100644
--- a/tests/testutilsqemuschema.c
+++ b/tests/testutilsqemuschema.c
@@ -381,6 +381,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




More information about the libvir-list mailing list