diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2015-07-02 21:17:35 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2015-07-02 21:17:35 +0000 |
commit | 7f80b9bccb90ca5c0492a9292ac0388444462c26 (patch) | |
tree | 4592f1a93dbc735cb1a2e91ea496d13594eded2d /regress/usr.sbin/syslogd | |
parent | fc7006c3c9595462403d73cb56f19b73b6c9accf (diff) |
Check the receive line count less strict to avoid false negatives.
Diffstat (limited to 'regress/usr.sbin/syslogd')
-rw-r--r-- | regress/usr.sbin/syslogd/args-dropped-sighup-tls.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/usr.sbin/syslogd/args-dropped-sighup-tls.pl b/regress/usr.sbin/syslogd/args-dropped-sighup-tls.pl index 388220bd323..0f03743e519 100644 --- a/regress/usr.sbin/syslogd/args-dropped-sighup-tls.pl +++ b/regress/usr.sbin/syslogd/args-dropped-sighup-tls.pl @@ -56,7 +56,8 @@ our %args = ( get_thirdlog() => 0, qr/syslogd: start/ => 1, qr/syslogd: restart/ => 1, - get_charlog() => '~41', + get_charlog() => '>=10', + get_charlog() => '<=90', qr/syslogd: dropped 2[0-9][0-9] messages to remote loghost/ => 1, }, }, |