From: Andrea Bolognani Date: Thu, 2 Mar 2023 17:35:31 +0000 (+0100) Subject: tests: Set more TLSx509certdirs X-Git-Tag: v9.2.0-rc1~188 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3278fd0d3b2eb84342f87247d7b9d650a9dee691;p=thirdparty%2Flibvirt.git tests: Set more TLSx509certdirs We were missing a couple. Signed-off-by: Andrea Bolognani Reviewed-by: Martin Kletzander --- diff --git a/tests/testutilsqemu.c b/tests/testutilsqemu.c index b093df8d9e..6039a00025 100644 --- a/tests/testutilsqemu.c +++ b/tests/testutilsqemu.c @@ -696,6 +696,10 @@ int qemuTestDriverInit(virQEMUDriver *driver) cfg->vxhsTLSx509certdir = g_strdup("/etc/pki/libvirt-vxhs/dummy,path"); VIR_FREE(cfg->nbdTLSx509certdir); cfg->nbdTLSx509certdir = g_strdup("/etc/pki/libvirt-nbd/dummy,path"); + VIR_FREE(cfg->migrateTLSx509certdir); + cfg->migrateTLSx509certdir = g_strdup("/etc/pki/libvirt-migrate"); + VIR_FREE(cfg->backupTLSx509certdir); + cfg->backupTLSx509certdir = g_strdup("/etc/pki/libvirt-backup"); VIR_FREE(cfg->vncSASLdir); cfg->vncSASLdir = g_strdup("/root/.sasl2");