mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 08:30:42 +01:00
FreeBSD is not able to run all tests, therefore all tests that can't be run will be disabled.
51 lines
1.5 KiB
Bash
Executable File
51 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# Added 2017-10-03 by Stephen Workman, released under ASL 2.0
|
|
|
|
uname
|
|
if [ `uname` = "FreeBSD" ] ; then
|
|
echo "This test currently does not work on FreeBSD."
|
|
exit 77
|
|
fi
|
|
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh generate-conf
|
|
. $srcdir/diag.sh add-conf '
|
|
module(load="../plugins/imtcp/.libs/imtcp")
|
|
module(load="../plugins/omstdout/.libs/omstdout")
|
|
input(type="imtcp" port="13514")
|
|
|
|
# $DebugLevel 2
|
|
|
|
set $!datetime!rfc3164 = format_time(1507165811, "date-rfc3164");
|
|
set $!datetime!rfc3339 = format_time(1507165811, "date-rfc3339");
|
|
|
|
set $!datetime!rfc3164Neg = format_time(-1507165811, "date-rfc3164");
|
|
set $!datetime!rfc3339Neg = format_time(-1507165811, "date-rfc3339");
|
|
|
|
set $!datetime!str1 = format_time("1507165811", "date-rfc3339");
|
|
set $!datetime!strinv1 = format_time("ABC", "date-rfc3339");
|
|
|
|
template(name="outfmt" type="string" string="%!datetime%\n")
|
|
local4.* action(type="omfile" file="rsyslog.out.log" template="outfmt")
|
|
local4.* :omstdout:;outfmt
|
|
'
|
|
|
|
. $srcdir/diag.sh startup
|
|
. $srcdir/diag.sh tcpflood -m1 -y | sed 's|\r||'
|
|
. $srcdir/diag.sh shutdown-when-empty
|
|
. $srcdir/diag.sh wait-shutdown
|
|
|
|
EXPECTED='{ "rfc3164": "Oct 5 01:10:11", "rfc3339": "2017-10-05T01:10:11Z", "rfc3164Neg": "Mar 29 22:49:49", "rfc3339Neg": "1922-03-29T22:49:49Z", "str1": "2017-10-05T01:10:11Z", "strinv1": "ABC" }'
|
|
|
|
echo "$EXPECTED" | cmp -b rsyslog.out.log
|
|
|
|
if [[ $? -ne 0 ]]; then
|
|
printf "Invalid function output detected!\n"
|
|
printf "Expected: $EXPECTED\n"
|
|
printf "Got: "
|
|
cat rsyslog.out.log
|
|
. $srcdir/diag.sh error-exit 1
|
|
fi;
|
|
|
|
. $srcdir/diag.sh exit
|