diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
commit | dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 (patch) | |
tree | 66a2774cd0ee294d019efd71d2544c70f42b2842 /tests/template-topos-neg.sh | |
parent | Initial commit. (diff) | |
download | rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.tar.xz rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.zip |
Adding upstream version 8.2402.0.upstream/8.2402.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/template-topos-neg.sh')
-rwxr-xr-x | tests/template-topos-neg.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/template-topos-neg.sh b/tests/template-topos-neg.sh new file mode 100755 index 0000000..d17fdb7 --- /dev/null +++ b/tests/template-topos-neg.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# This is part of the rsyslog testbench, licensed under ASL 2.0 +. ${srcdir:=.}/diag.sh init +generate_conf +add_conf ' +template(name="out" type="list") { + property(name="STRUCTURED-DATA" position.from="2" position.to="-1") + constant(value="\n") +} + +local4.debug action(type="omfile" template="out" file="'$RSYSLOG_OUT_LOG'") +' +startup +injectmsg_literal '<167>1 2003-03-01T01:00:00.000Z hostname1 sender - tag [tcpflood@32473 MSGNUM="0"] msgnum:irrelevant' +shutdown_when_empty +wait_shutdown +export EXPECTED='tcpflood@32473 MSGNUM="0"' +cmp_exact +exit_test |