summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/syslogd/args-sendsyslog-native.pl
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2015-09-09 10:59:27 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2015-09-09 10:59:27 +0000
commit5d96edddcce5fe96a47d882c1fecbc05683baad9 (patch)
tree4247f84ab68b9a5cfcde266db097e144a1c1776a /regress/usr.sbin/syslogd/args-sendsyslog-native.pl
parent321205e8398c3126e0e15dc437c7dc24fa32d125 (diff)
Add args-bufsize-native.pl that checks wether libc syslog(3) can
handle 8192 bytes messages. Rename the sendsyslog(2) tests consistently.
Diffstat (limited to 'regress/usr.sbin/syslogd/args-sendsyslog-native.pl')
-rw-r--r--regress/usr.sbin/syslogd/args-sendsyslog-native.pl22
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;