From dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 18:28:20 +0200 Subject: Adding upstream version 8.2402.0. Signed-off-by: Daniel Baumann --- tests/gzipwr_hup_multi_file.sh | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100755 tests/gzipwr_hup_multi_file.sh (limited to 'tests/gzipwr_hup_multi_file.sh') diff --git a/tests/gzipwr_hup_multi_file.sh b/tests/gzipwr_hup_multi_file.sh new file mode 100755 index 0000000..3083820 --- /dev/null +++ b/tests/gzipwr_hup_multi_file.sh @@ -0,0 +1,46 @@ +#!/bin/bash +# This file is part of the rsyslog project, released under ASL 2.0 +# Written 2019-06-12 by Rainer Gerhards +export TEST_MAX_RUNTIME=7200 +. ${srcdir:=.}/diag.sh init +export NUMMESSAGES=100000 +generate_conf +add_conf ' +module(load="../plugins/imtcp/.libs/imtcp") +main_queue(queue.workerThreads="10" queue.workerThreadMinimumMessages="200") +input(type="imtcp" port="0" listenPortFileName="'$RSYSLOG_DYNNAME'.tcpflood_port") + +template(name="outfmt" type="string" + string="%msg:F,58:2%,%msg:F,58:3%,%msg:F,58:4%\n") +template(name="dynfile" type="string" string="'$RSYSLOG_OUT_LOG'.%$/file%") + + + +:msg, contains, "msgnum:" action(type="omfile" template="outfmt" + zipLevel="9" ioBufferSize="16" flushOnTXEnd="on" + dynafile="dynfile" dynaFileCacheSize="5" + asyncWriting="on") + +if $msg contains "msgnum" then { + set $/file = cnum($/file) + 1; + if $/file >= 10 then { + set $/file = 0; + } +} +' +startup +./tcpflood -p$TCPFLOOD_PORT -m$NUMMESSAGES & # TCPFlood needs to run async! +for i in $(seq 0 20); do + printf '\nsending HUP %d\n' $i + issue_HUP + ./msleep 10 +done +shutdown_when_empty +wait_shutdown +ls -l ${RSYSLOG_OUT_LOG}.* +for f in "${RSYSLOG_OUT_LOG}".*; do + echo unzipping $f + gunzip < "$f" >> $RSYSLOG_OUT_LOG +done +seq_check +exit_test -- cgit v1.2.3