rsyslog/tests/msleep_usage_output.sh
Rainer Gerhards 69ef6e329b fix bad bash coding style and disable shellcheck false positives
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
2018-10-23 13:27:37 +02:00

15 lines
273 B
Bash
Executable File

#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
./msleep &> $RSYSLOG_DYNNAME.output
grep "usage: msleep" $RSYSLOG_DYNNAME.output
if [ ! $? -eq 0 ]; then
echo "invalid response generated"
error_exit 1
fi;
exit_test