rsyslog/tests/unused_lookup_table-vg.sh
2018-12-19 13:48:03 +01:00

28 lines
926 B
Bash
Executable File

#!/bin/bash
# test for ensuring clean destruction of lookup-table even when it is never used
# added 2015-09-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
skip_platform "FreeBSD" "This test currently does not work on FreeBSD"
generate_conf
add_conf '
lookup_table(name="xlate" file="'$RSYSLOG_DYNNAME'.xlate.lkp_tbl")
template(name="outfmt" type="string" string="- %msg%\n")
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
'
cp -f $srcdir/testsuites/xlate.lkp_tbl $RSYSLOG_DYNNAME.xlate.lkp_tbl
startup_vg
injectmsg 0 1
shutdown_when_empty
wait_shutdown_vg
check_exit_vg
content_check "msgnum:00000000:"
exit_test
# the test actually expects clean destruction of lookup_table
# when lookup_table is loaded, it can either be:
# - used (clean destruct covered by another test)
# - not-used (this test ensures its destroyed cleanly)