Fixes test failure that was overlooked after commit
1e1f7a8950.
* daemon/Makefile.am (check-local): Let 'make check' fail on error.
* daemon/test_libvirtd.aug: Move qemu-specific option...
* src/qemu/test_libvirtd_qemu.aug: ...into correct test.
* src/qemu/libvirtd_qemu.aug: Parse new option.
mv $@-t $@
check-local:
- test -x '$(AUGPARSE)' \
- && '$(AUGPARSE)' -I $(srcdir) $(srcdir)/test_libvirtd.aug || :
+ $(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
+ '$(AUGPARSE)' -I $(srcdir) $(srcdir)/test_libvirtd.aug; \
+ fi
else
# Auditing:
audit_level = 2
-
-# VNC socket
-vnc_auto_unix_socket = 1
"
test Libvirtd.lns get conf =
{ "#empty" }
{ "#comment" = "Auditing:" }
{ "audit_level" = "2" }
- { "#empty" }
- { "#comment" = "VNC socket:" }
- { "vnc_auto_unix_socket" = "1" }
(* Config entry grouped by function - same order as example config *)
let vnc_entry = str_entry "vnc_listen"
+ | bool_entry "vnc_auto_unix_socket"
| bool_entry "vnc_tls"
| str_entry "vnc_tls_x509_cert_dir"
| bool_entry "vnc_tls_x509_verify"
clear_emulator_capabilities = 0
allow_disk_format_probing = 1
+
+vnc_auto_unix_socket = 1
"
test Libvirtd_qemu.lns get conf =
{ "clear_emulator_capabilities" = "0" }
{ "#empty" }
{ "allow_disk_format_probing" = "1" }
+{ "#empty" }
+{ "vnc_auto_unix_socket" = "1" }