From: Peter Krempa Date: Tue, 17 Dec 2019 09:02:10 +0000 (+0100) Subject: tests: securityselinuxlabel: Add QEMU_CAPS_VNC to fake qemuCaps X-Git-Tag: v6.0.0-rc1~264 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9fdcb0b78ee8065e786ec3d6c53bf2cb4e85d92;p=thirdparty%2Flibvirt.git tests: securityselinuxlabel: Add QEMU_CAPS_VNC to fake qemuCaps In commit 45270337f057f26ce484f6e forgot to make sure that tests pass. Add the missing capability to fix the test. Signed-off-by: Peter Krempa --- diff --git a/tests/securityselinuxlabeltest.c b/tests/securityselinuxlabeltest.c index 192f2dc84f..3040a36693 100644 --- a/tests/securityselinuxlabeltest.c +++ b/tests/securityselinuxlabeltest.c @@ -351,6 +351,7 @@ mymain(void) return EXIT_FAILURE; virQEMUCapsSet(qemuCaps, QEMU_CAPS_DEVICE_CIRRUS_VGA); + virQEMUCapsSet(qemuCaps, QEMU_CAPS_VNC); if (qemuTestCapsCacheInsert(driver.qemuCapsCache, qemuCaps) < 0) return EXIT_FAILURE;