diff options
Diffstat (limited to 'regress/usr.sbin/syslogd/args-memory-read-cont.pl')
-rw-r--r-- | regress/usr.sbin/syslogd/args-memory-read-cont.pl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/regress/usr.sbin/syslogd/args-memory-read-cont.pl b/regress/usr.sbin/syslogd/args-memory-read-cont.pl new file mode 100644 index 00000000000..1e1ccdaab13 --- /dev/null +++ b/regress/usr.sbin/syslogd/args-memory-read-cont.pl @@ -0,0 +1,32 @@ +# Syslogc reads the memory logs continously. +# The client writes a message to Sys::Syslog native method. +# The syslogd writes it into a file and through a pipe. +# The syslogd passes it via UDP to the loghost. +# The server receives the message on its UDP socket. +# Find the message in client, file, pipe, syslogd, server, syslogc log. +# Check that memory buffer has not been cleared. + +use strict; +use warnings; + +our %args = ( + syslogd => { + memory => 1, + loggrep => { + qr/Accepting control connection/ => 2, + qr/ctlcmd 6/ => 1, + get_testlog() => 1, + }, + }, + syslogc => [ { + early => 1, + stop => 1, + options => ["-f", "memory"], + down => get_downlog(), + }, { + options => ["memory"], + down => get_downlog(), + } ], +); + +1; |