mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-11 05:00:41 +01:00
Also now permit interactivly running tests without explicitly setting $srcdir. This now works if we are inside ./tests and fails, as before, when we are in a different directory. Detected by shellcheck via CodeFactor.io
22 lines
643 B
Bash
Executable File
22 lines
643 B
Bash
Executable File
#!/bin/bash
|
|
# a very basic test for omjournal. Right now, we have no
|
|
# reliable way of verifying that data was actually written
|
|
# to the journal, but at least we check that rsyslog does
|
|
# not abort when trying to use omjournal. Not high tech,
|
|
# but better than nothing.
|
|
# addd 2016-03-16 by RGerhards, released under ASL 2.0
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
module(load="../plugins/omjournal/.libs/omjournal")
|
|
|
|
template(name="outfmt" type="string" string="%msg%")
|
|
action(type="omjournal" template="outfmt")
|
|
'
|
|
startup
|
|
./msleep 500
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
# if we reach this, we have at least not aborted
|
|
exit_test
|