rsyslog/tests/pipeaction.sh
Andre Lorbach be940cf970 testbench: made work on FreeBSD
bash "source" extension is not supported in FreeBSD default shell"
2015-07-15 09:33:31 +00:00

34 lines
1.2 KiB
Bash
Executable File

# Test for the pipe output action.
# will create a fifo in the current directory, write to it and
# then do the usual sequence checks.
# added 2009-11-05 by RGerhards
echo ===============================================================================
echo \[pipeaction.sh\]: testing pipe output action
# create the pipe and start a background process that copies data from
# it to the "regular" work file
. $srcdir/diag.sh init
rm -f rsyslog-testbench-fifo
mkfifo rsyslog-testbench-fifo
cp rsyslog-testbench-fifo rsyslog.out.log &
CPPROCESS=$!
echo background cp process id is $CPPROCESS
# now do the usual run
. $srcdir/diag.sh startup pipeaction.conf
# 20000 messages should be enough
#. $srcdir/diag.sh tcpflood -m20000
. $srcdir/diag.sh injectmsg 0 20000
. $srcdir/diag.sh shutdown-when-empty # shut down rsyslogd when done processing messages
. $srcdir/diag.sh wait-shutdown
# wait for the cp process to finish, do pipe-specific cleanup
echo waiting for background cp to terminate...
wait $CPPROCESS
rm -f rsyslog-testbench-fifo
echo background cp has terminated, continue test...
# and continue the usual checks
. $srcdir/diag.sh seq-check 0 19999
. $srcdir/diag.sh exit