diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2014-09-13 23:38:25 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2014-09-13 23:38:25 +0000 |
commit | c819d91e3676c9f15731886f1fac76ad619f74a0 (patch) | |
tree | 4f1999abd16b36138e8f57180fdc9d2be7c7577d /regress/usr.sbin/syslogd/args-memory-read-cont.pl | |
parent | 64814894fa0b36e05fd1868e18f0186c7882706d (diff) |
Add tests for syslogd's memory buffer and read it with syslogc.
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; |