diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/imuxsock_traillf.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/imuxsock_traillf.sh b/tests/imuxsock_traillf.sh new file mode 100755 index 0000000..5b822c4 --- /dev/null +++ b/tests/imuxsock_traillf.sh @@ -0,0 +1,25 @@ +#!/bin/bash +. ${srcdir:=.}/diag.sh init +export NUMMESSAGES=1 +export QUEUE_EMPTY_CHECK_FUNC=wait_file_lines +./syslog_caller -fsyslog_inject-l -m0 > /dev/null 2>&1 +no_liblogging_stdlog=$? +if [ $no_liblogging_stdlog -ne 0 ];then + echo "liblogging-stdlog not available - skipping test" + exit 77 +fi +generate_conf +add_conf ' +module(load="../plugins/imuxsock/.libs/imuxsock" sysSock.use="off") +input(type="imuxsock" Socket="'$RSYSLOG_DYNNAME'-testbench_socket") + +template(name="outfmt" type="string" string="%msg:%\n") +local1.* action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt") +' +startup +./syslog_caller -fsyslog_inject-l -m1 -C "uxsock:$RSYSLOG_DYNNAME-testbench_socket" +shutdown_when_empty +wait_shutdown +export EXPECTED=" test" +cmp_exact +exit_test |