From 3278fd0d3b2eb84342f87247d7b9d650a9dee691 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Thu, 2 Mar 2023 18:35:31 +0100 Subject: [PATCH] tests: Set more TLSx509certdirs We were missing a couple. Signed-off-by: Andrea Bolognani Reviewed-by: Martin Kletzander --- tests/testutilsqemu.c | 4 ++++ 1 file changed, 4 insertions(+) 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"); -- 2.47.2