summaryrefslogtreecommitdiffstats
path: root/tests/omfwd-errfile-maxsize-filled.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/omfwd-errfile-maxsize-filled.sh')
-rwxr-xr-xtests/omfwd-errfile-maxsize-filled.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/omfwd-errfile-maxsize-filled.sh b/tests/omfwd-errfile-maxsize-filled.sh
new file mode 100755
index 0000000..25a08ec
--- /dev/null
+++ b/tests/omfwd-errfile-maxsize-filled.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+# part of the rsyslog project, released under ASL 2.0
+. ${srcdir:=.}/diag.sh init
+ERRFILE="$RSYSLOG_DYNNAME.err"
+export MAX_ERROR_SIZE=1999
+export INITIAL_FILE_SIZE=$((MAX_ERROR_SIZE - 100))
+dd if=/dev/urandom of=${ERRFILE} bs=1 count=${INITIAL_FILE_SIZE}
+generate_conf
+add_conf '
+action(type="omfwd" target="1.2.3.4" port="1234" Protocol="tcp" NetworkNamespace="doesNotExist"
+ action.errorfile="'$ERRFILE'" action.errorfile.maxsize="'$MAX_ERROR_SIZE'")
+'
+startup
+shutdown_when_empty
+wait_shutdown
+check_file_exists ${ERRFILE}
+file_size_check ${ERRFILE} ${MAX_ERROR_SIZE}
+exit_test