From: Andrea Bolognani Date: Mon, 6 Mar 2023 12:43:01 +0000 (+0100) Subject: tests: Limit use of TLSx509secretUUIDs X-Git-Tag: v9.2.0-rc1~194 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=156cdf1967fd841b567ade51ccdc612e808423c1;p=thirdparty%2Flibvirt.git tests: Limit use of TLSx509secretUUIDs These are intended to be used for just a few specific tests, but since we don't always free them up afterwards they could end up accidentally affecting subsequent tests as well. Signed-off-by: Andrea Bolognani Reviewed-by: Martin Kletzander --- diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c index 888b535934..c41c890fc9 100644 --- a/tests/qemuxml2argvtest.c +++ b/tests/qemuxml2argvtest.c @@ -1296,6 +1296,8 @@ mymain(void) DO_TEST_CAPS_LATEST("disk-network-tlsx509-nbd-hostname"); DO_TEST_CAPS_VER("disk-network-tlsx509-vxhs", "5.0.0"); DO_TEST_CAPS_LATEST("disk-network-http"); + VIR_FREE(driver.config->nbdTLSx509secretUUID); + VIR_FREE(driver.config->vxhsTLSx509secretUUID); driver.config->vxhsTLS = 0; DO_TEST_CAPS_LATEST("disk-no-boot"); DO_TEST_CAPS_LATEST("disk-nvme"); @@ -1574,6 +1576,7 @@ mymain(void) DO_TEST("serial-tcp-tlsx509-secret-chardev", QEMU_CAPS_DEVICE_ISA_SERIAL); DO_TEST_CAPS_LATEST("serial-tcp-tlsx509-secret-chardev"); + VIR_FREE(driver.config->chardevTLSx509secretUUID); driver.config->chardevTLS = 0; DO_TEST("serial-many-chardev", QEMU_CAPS_DEVICE_ISA_SERIAL);