diff options
Diffstat (limited to 'regress/usr.sbin/syslogd/args-sendsyslog-native.pl')
-rw-r--r-- | regress/usr.sbin/syslogd/args-sendsyslog-native.pl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/regress/usr.sbin/syslogd/args-sendsyslog-native.pl b/regress/usr.sbin/syslogd/args-sendsyslog-native.pl new file mode 100644 index 00000000000..18f716301ee --- /dev/null +++ b/regress/usr.sbin/syslogd/args-sendsyslog-native.pl @@ -0,0 +1,22 @@ +# 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 log. +# Create a ktrace dump of the client and check that sendsyslog(2) +# has been used. + +use strict; +use warnings; + +our %args = ( + client => { + ktrace => { + qr/CALL sendsyslog/ => 2, + qr/GIO fd -1 wrote \d+ bytes/ => 2, + qr/RET sendsyslog 0/ => 2, + }, + }, +); + +1; |