mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-17 22: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.
19 lines
428 B
Bash
Executable File
19 lines
428 B
Bash
Executable File
#!/bin/bash
|
|
echo ===============================================================================
|
|
echo \[tabescape_dflt.sh\]: test for default tab escaping
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh generate-HOSTNAME
|
|
|
|
./nettester -ttabescape_dflt -iudp
|
|
if [ "$?" -ne "0" ]; then
|
|
echo erorr in udp run
|
|
exit 1
|
|
fi
|
|
|
|
echo test via tcp
|
|
./nettester -ttabescape_dflt -itcp
|
|
if [ "$?" -ne "0" ]; then
|
|
echo erorr in tcp run
|
|
exit 1
|
|
fi
|