mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 12:10:46 +01:00
Also now permit interactivly running tests without explicitly setting $srcdir. This now works if we are inside ./tests and fails, as before, when we are in a different directory. Detected by shellcheck via CodeFactor.io
30 lines
903 B
Bash
Executable File
30 lines
903 B
Bash
Executable File
#!/bin/bash
|
|
# added 2010-08-11 by Rgerhards
|
|
#
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
# NOTE: we intentionally use obsolete legacy style so that we can check
|
|
# that it still works. DO NOT CONVERT/REMOVE! -- rgerhards, 2018-08-01
|
|
|
|
. ${srcdir:=.}/diag.sh init
|
|
export PORT_TCP="$(get_free_port)"
|
|
generate_conf
|
|
# be careful: bash expansion is used below --> you need to escape!
|
|
add_conf "
|
|
\$ModLoad ../plugins/imtcp/.libs/imtcp
|
|
\$MainMsgQueueTimeoutShutdown 10000
|
|
\$InputTCPServerAddtlFrameDelimiter 0
|
|
\$InputTCPServerRun $PORT_TCP
|
|
|
|
\$template outfmt,\"%msg:F,58:2%\n\"
|
|
\$OMFileFlushOnTXEnd off
|
|
\$OMFileFlushInterval 2
|
|
\$OMFileIOBufferSize 256k
|
|
local0.* ./$RSYSLOG_OUT_LOG;outfmt
|
|
"
|
|
startup
|
|
tcpflood -m20000 -F0 -P129 -p$PORT_TCP
|
|
shutdown_when_empty # shut down rsyslogd when done processing messages
|
|
wait_shutdown # and wait for it to terminate
|
|
seq_check 0 19999
|
|
exit_test
|