mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 23:10:41 +01:00
Most of the tests will not work in other default shells like on Freebsd or Solaris. So we make /bin/bash default now.
17 lines
373 B
Bash
Executable File
17 lines
373 B
Bash
Executable File
#!/bin/bash
|
|
echo ===============================================================================
|
|
echo \[tabescape_off.sh\]: test for tab escaping off
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh generate-HOSTNAME
|
|
|
|
./nettester -ttabescape_off -iudp
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo test via tcp
|
|
./nettester -ttabescape_off -itcp
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|