rsyslog/tests/imuxsock_logger_parserchain.sh
Rainer Gerhards 6bba5a7577
testbench: guard tests against unexpected warning messages
Practice has shown that environment-induced error messages may
appear during test runs. For example, incorrect resolver settings
may cause name resolution warnings or errors. These are unrelated
to the test itself.

This patch enables tests that are otherwise unaffected by the faillures
to continue and provide "pass" test result.

see also https://github.com/rsyslog/rsyslog/issues/4619
2021-08-09 10:41:09 +02:00

27 lines
780 B
Bash
Executable File

#!/bin/bash
# Copyright (C) 2015-03-04 by rainer gerhards, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
check_logger_has_option_d
export NUMMESSAGES=1
export QUEUE_EMPTY_CHECK_FUNC=wait_file_lines
generate_conf
add_conf '
module(load="../plugins/imuxsock/.libs/imuxsock" sysSock.use="off")
input( type="imuxsock" socket="'$RSYSLOG_DYNNAME'-testbench_socket"
useSpecialParser="off"
parseHostname="on")
template(name="outfmt" type="string" string="%msg:%\n")
*.=notice action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
'
startup
logger -d --rfc3164 -u $RSYSLOG_DYNNAME-testbench_socket test
if [ ! $? -eq 0 ]; then
logger -d -u $RSYSLOG_DYNNAME-testbench_socket test
fi;
shutdown_when_empty
wait_shutdown
export EXPECTED=" test"
cmp_exact
exit_test