mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
4471ecf669
The test should refer to Virtlockd.lns, which is the name of the module + lens in virtlockd.aug.
13 lines
338 B
Plaintext
13 lines
338 B
Plaintext
module Test_virtlockd =
|
|
let conf = "log_level = 3
|
|
log_filters=\"3:remote 4:event\"
|
|
log_outputs=\"3:syslog:libvirtd\"
|
|
log_buffer_size = 64
|
|
"
|
|
|
|
test Virtlockd.lns get conf =
|
|
{ "log_level" = "3" }
|
|
{ "log_filters" = "3:remote 4:event" }
|
|
{ "log_outputs" = "3:syslog:libvirtd" }
|
|
{ "log_buffer_size" = "64" }
|