diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/udp-msgreduc-vg.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/udp-msgreduc-vg.sh b/tests/udp-msgreduc-vg.sh new file mode 100755 index 0000000..1cfd6a1 --- /dev/null +++ b/tests/udp-msgreduc-vg.sh @@ -0,0 +1,35 @@ +#!/bin/bash +# check if valgrind violations occur. Correct output is not checked. +# added 2011-03-01 by Rgerhards +# This file is part of the rsyslog project, released under GPLv3 + +uname +if [ $(uname) = "FreeBSD" ] ; then + echo "This test currently does not work on FreeBSD." + exit 77 +fi + +echo =============================================================================== +echo \[udp-msgreduc-vg.sh\]: testing imtcp multiple listeners +. ${srcdir:=.}/diag.sh init +generate_conf +add_conf ' +$ModLoad ../plugins/imudp/.libs/imudp +$UDPServerRun '$TCPFLOOD_PORT' +$RepeatedMsgReduction on + +$template outfmt,"%msg:F,58:2%\n" +*.* action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt") +#:msg, contains, "msgnum:" action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt") +' +startup_vg +tcpflood -t 127.0.0.1 -m 4 -r -Tudp -M "\"<133>2011-03-01T11:22:12Z host tag msgh ...\"" +tcpflood -t 127.0.0.1 -m 1 -r -Tudp -M "\"<133>2011-03-01T11:22:12Z host tag msgh ...x\"" +shutdown_when_empty # shut down rsyslogd when done processing messages +wait_shutdown_vg +if [ "$RSYSLOGD_EXIT" -eq "10" ] +then + echo "udp-msgreduc-vg.sh FAILED" + exit 1 +fi +exit_test |