mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 00:30:41 +01:00
Based on Jonathan Bond-Caron's patch for v4. This now also includes some automatted tests.
15 lines
375 B
Bash
Executable File
15 lines
375 B
Bash
Executable File
echo ===============================================================================
|
|
echo \[tabescape_dflt.sh\]: test for default tab escaping
|
|
$srcdir/killrsyslog.sh # kill rsyslogd if it runs for some reason
|
|
|
|
./nettester -ttabescape_dflt -iudp
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo test via tcp
|
|
./nettester -ttabescape_dflt -itcp
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|