mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 09:50:40 +01:00
21 lines
1002 B
Bash
Executable File
21 lines
1002 B
Bash
Executable File
# Test if rsyslog survives sending truely random data to it...
|
|
#
|
|
# added 2010-04-01 by Rgerhards
|
|
# This file is part of the rsyslog project, released under GPLv3
|
|
echo ===============================================================================
|
|
echo TEST: \[random.sh\]: testing random data
|
|
source $srcdir/diag.sh init
|
|
# uncomment for debugging support:
|
|
#export RSYSLOG_DEBUG="debug nostdout noprintmutexaction"
|
|
#export RSYSLOG_DEBUGLOG="log"
|
|
source $srcdir/diag.sh startup random.conf
|
|
# generate random data
|
|
./randomgen -f rsyslog.random.data -s 100000
|
|
ls -l rsyslog.random.data
|
|
source $srcdir/diag.sh tcpflood -B -I rsyslog.random.data -c5 -C10
|
|
source $srcdir/diag.sh shutdown-when-empty # shut down rsyslogd when done processing messages
|
|
source $srcdir/diag.sh wait-shutdown # and wait for it to terminate
|
|
# we do not check anything yet, the point is if rsyslog survived ;)
|
|
# TODO: check for exit message, but we'll notice an abort anyhow, so not that important
|
|
source $srcdir/diag.sh exit
|