From: Laine Stump Date: Thu, 18 Aug 2022 17:29:07 +0000 (-0400) Subject: tests: remove superfluous cleanup: labels and ret return variables X-Git-Tag: v8.7.0-rc1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15bd9179bec58ad3684b9790b06f605f0664b541;p=thirdparty%2Flibvirt.git tests: remove superfluous cleanup: labels and ret return variables After converting virNetworkDef * to g_autoptr(virNetworkDef) the cleanup codepath was empty, so it has been removed. Signed-off-by: Laine Stump Reviewed-by: Ján Tomko --- diff --git a/tests/networkxml2firewalltest.c b/tests/networkxml2firewalltest.c index f895ca8c56..ca793fd4ea 100644 --- a/tests/networkxml2firewalltest.c +++ b/tests/networkxml2firewalltest.c @@ -90,17 +90,16 @@ static int testCompareXMLToArgvFiles(const char *xml, g_autofree char *actualargv = NULL; g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER; g_autoptr(virNetworkDef) def = NULL; - int ret = -1; char *actual; g_autoptr(virCommandDryRunToken) dryRunToken = virCommandDryRunTokenNew(); virCommandSetDryRun(dryRunToken, &buf, true, true, testCommandDryRun, NULL); if (!(def = virNetworkDefParseFile(xml, NULL))) - goto cleanup; + return -1; if (networkAddFirewallRules(def) < 0) - goto cleanup; + return -1; actual = actualargv = virBufferContentAndReset(&buf); @@ -112,12 +111,9 @@ static int testCompareXMLToArgvFiles(const char *xml, actual += strlen(baseargs); if (virTestCompareToFileFull(actual, cmdline, false) < 0) - goto cleanup; + return -1; - ret = 0; - - cleanup: - return ret; + return 0; } struct testInfo { diff --git a/tests/networkxml2xmlupdatetest.c b/tests/networkxml2xmlupdatetest.c index 4926609f90..58b6f70c96 100644 --- a/tests/networkxml2xmlupdatetest.c +++ b/tests/networkxml2xmlupdatetest.c @@ -23,7 +23,7 @@ testCompareXMLToXMLFiles(const char *netxml, const char *updatexml, g_autoptr(virNetworkDef) def = NULL; if (virTestLoadFile(updatexml, &updateXmlData) < 0) - goto error; + return -1; if (!(def = virNetworkDefParseFile(netxml, NULL))) goto fail; @@ -37,7 +37,7 @@ testCompareXMLToXMLFiles(const char *netxml, const char *updatexml, if (!expectFailure) { if (virTestCompareToFile(actual, outxml) < 0) - goto error; + return -1; } ret = 0; @@ -52,7 +52,6 @@ testCompareXMLToXMLFiles(const char *netxml, const char *updatexml, ret = 0; } } - error: return ret; }