]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
qemustatusxml2xmltest: Remove capabilities infrastructure
authorPeter Krempa <pkrempa@redhat.com>
Thu, 31 Aug 2023 20:35:07 +0000 (22:35 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 6 Sep 2023 12:09:46 +0000 (14:09 +0200)
The status XML doesn't require any capabilities to be parsed and
formatted back. Remove all qemuCaps related code.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
tests/qemustatusxml2xmltest.c

index c689ab3b031f17918d3bb1d097e3b8a34bece396..418a724b94f95fcbe833746ae384e98f1a29f6bc 100644 (file)
@@ -23,13 +23,7 @@ testCompareStatusXMLToXMLFiles(const void *opaque)
     g_autofree char *actual = NULL;
     int ret = -1;
 
-    if (testQemuInfoInitArgs((struct testQemuInfo *) data) < 0)
-        return -1;
-
-    virFileCacheClear(driver.qemuCapsCache);
-
-    if (qemuTestCapsCacheInsert(driver.qemuCapsCache, data->qemuCaps) < 0)
-        return -1;
+    /* this test suite doesn't yet need testQemuInfoInitArgs() */
 
     if (!(obj = virDomainObjParseFile(data->infile, driver.xmlopt,
                                       VIR_DOMAIN_DEF_PARSE_STATUS |
@@ -76,15 +70,8 @@ static int
 mymain(void)
 {
     int ret = 0;
-    g_autoptr(GHashTable) capslatest = testQemuGetLatestCaps();
-    g_autoptr(GHashTable) capscache = virHashNew(virObjectUnref);
     g_autoptr(virConnect) conn = NULL;
-    struct testQemuConf testConf = { .capslatest = capslatest,
-                                     .capscache = capscache,
-                                     .qapiSchemaCache = NULL };
-
-    if (!capslatest)
-        return EXIT_FAILURE;
+    struct testQemuConf testConf = { NULL, NULL, NULL };
 
     if (qemuTestDriverInit(&driver) < 0)
         return EXIT_FAILURE;