diff options
Diffstat (limited to 'tests/glbl-internalmsg_severity-info-shown.sh')
-rwxr-xr-x | tests/glbl-internalmsg_severity-info-shown.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/glbl-internalmsg_severity-info-shown.sh b/tests/glbl-internalmsg_severity-info-shown.sh new file mode 100755 index 0000000..265894f --- /dev/null +++ b/tests/glbl-internalmsg_severity-info-shown.sh @@ -0,0 +1,17 @@ +#!/bin/bash +# check that info-severity messages are actually emitted; we use +# lookup table as a simple sample to get such a message. +# addd 2019-05-07 by RGerhards, released under ASL 2.0 +. ${srcdir:=.}/diag.sh init +generate_conf +add_conf ' +global(internalmsg.severity="info") +lookup_table(name="xlate" file="'$RSYSLOG_DYNNAME'.xlate.lkp_tbl" reloadOnHUP="on") +action(type="omfile" file="'$RSYSLOG_OUT_LOG'") +' +cp -f $srcdir/testsuites/xlate.lkp_tbl $RSYSLOG_DYNNAME.xlate.lkp_tbl +startup +shutdown_when_empty +wait_shutdown +content_check "lookup table 'xlate' loaded from file" +exit_test |