mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-17 15:10:42 +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
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
# add 2017-10-30 by PascalWithopf, released under ASL 2.0
|
|
#tests for Segmentation Fault
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
#set $!r = $!var1!var3!var2;
|
|
'
|
|
startup
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
|
|
exit_test
|