From 78ae89b856804f6df0a7a1a1763dc66ef0dd9433 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Thu, 31 Aug 2023 22:35:07 +0200 Subject: [PATCH] qemustatusxml2xmltest: Remove capabilities infrastructure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The status XML doesn't require any capabilities to be parsed and formatted back. Remove all qemuCaps related code. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- tests/qemustatusxml2xmltest.c | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/tests/qemustatusxml2xmltest.c b/tests/qemustatusxml2xmltest.c index c689ab3b03..418a724b94 100644 --- a/tests/qemustatusxml2xmltest.c +++ b/tests/qemustatusxml2xmltest.c @@ -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;