blob: 42d9f1223fc19252e6c0af80c5ea691a803f30f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
# add 2019-04-04 by Philippe Duveau, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
generate_conf
add_conf '
module(load="../contrib/improg/.libs/improg")
input(type="improg" tag="tag" ruleset="ruleset"
binary="'${srcdir:=.}'/improg-simul.sh -e '$RSYSLOG_DYNNAME'.stderr -n 1 -g"
confirmmessages="off" signalonclose="on" killunresponsive="on"
)
ruleset(name="ruleset") {
action(type="omfile" file="'$RSYSLOG_OUT_LOG'")
}
'
startup
shutdown_when_empty
wait_shutdown
content_check "program data"
if [ ! -e $RSYSLOG_DYNNAME.stderr ]; then
echo $RSYSLOG_DYNNAME'.stderr missing'
error_exit 1
fi
export EXPECTED='SIGTERM Received'
cmp_exact $RSYSLOG_DYNNAME.stderr
exit_test
|