From 17a8d82791b99cb52caf8f061e6d62070ef4fdd8 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Tue, 6 Apr 2021 11:21:21 +0200 Subject: [PATCH] nwfilterxml2firewalltest: Strip path from test output via virCommandSetDryRun MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enable the internal path clearing instead of using virTestClearCommandPath. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko Reviewed-by: Pavel Hrdina --- tests/nwfilterxml2firewalltest.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/nwfilterxml2firewalltest.c b/tests/nwfilterxml2firewalltest.c index f72cd06e58..44b2ad04ba 100644 --- a/tests/nwfilterxml2firewalltest.c +++ b/tests/nwfilterxml2firewalltest.c @@ -375,7 +375,7 @@ static int testCompareXMLToArgvFiles(const char *xml, memset(&inst, 0, sizeof(inst)); - virCommandSetDryRun(dryRunToken, &buf, false, false, NULL, NULL); + virCommandSetDryRun(dryRunToken, &buf, false, true, NULL, NULL); if (!vars) goto cleanup; @@ -392,7 +392,6 @@ static int testCompareXMLToArgvFiles(const char *xml, goto cleanup; actualargv = virBufferContentAndReset(&buf); - virTestClearCommandPath(actualargv); testRemoveCommonRules(actualargv);