mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 12:50:41 +01:00
Thanks to Michael Biebl for his help on this issue. This patch also contains some slight test modernization and a "name fix" for a non-valgrind test. closes https://github.com/rsyslog/rsyslog/issues/3853
24 lines
671 B
Bash
Executable File
24 lines
671 B
Bash
Executable File
#!/bin/bash
|
|
# add 2017-11-06 by PascalWithopf, released under ASL 2.0
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
module(load="../plugins/mmexternal/.libs/mmexternal")
|
|
|
|
template(name="outfmt" type="string" string="-%$!%-\n")
|
|
|
|
if $msg contains "msgnum:" then {
|
|
action(type="mmexternal" interface.input="fulljson"
|
|
binary="'$PYTHON' '${srcdir}'/testsuites/mmexternal-SegFault-mm-python.py")
|
|
action(type="omfile" template="outfmt" file=`echo $RSYSLOG_OUT_LOG`)
|
|
}
|
|
'
|
|
startup_vg
|
|
injectmsg litteral "<129>Mar 10 01:00:00 172.20.245.8 tag:msgnum:1"
|
|
shutdown_when_empty
|
|
wait_shutdown_vg
|
|
check_exit_vg
|
|
export EXPECTED='-{ "sometag": "somevalue" }-'
|
|
cmp_exact
|
|
exit_test
|