mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-11 05:00:41 +01:00
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
25 lines
735 B
Bash
Executable File
25 lines
735 B
Bash
Executable File
#!/bin/bash
|
|
# test trailing LF handling in imuxsock
|
|
# note: we use the system socket, but assign a different name to
|
|
# it. This is not 100% the same thing as running as root, but it
|
|
# is pretty close to it. -- rgerhards, 201602-19
|
|
. ${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.name="'$RSYSLOG_DYNNAME'-testbench_socket")
|
|
|
|
$template outfmt,"%msg:%\n"
|
|
*.=notice action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="outfmt")
|
|
'
|
|
startup
|
|
logger -d -u $RSYSLOG_DYNNAME-testbench_socket test
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
export EXPECTED=" test"
|
|
cmp_exact
|
|
exit_test
|