mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-21 02:00:42 +01:00
26 lines
849 B
Bash
Executable File
26 lines
849 B
Bash
Executable File
#!/bin/bash
|
|
# test many concurrent tcp connections
|
|
# addd 2016-01-12 by RGerhards, released under ASL 2.0
|
|
# requires faketime
|
|
echo \[now_family_utc\]: test \$NOW family of system properties
|
|
export TZ=TEST+06:30
|
|
faketime '2016-01-01 01:00:00' date
|
|
if [ $? -ne 0 ]; then
|
|
echo "faketime command missing, skipping test"
|
|
exit 77
|
|
fi
|
|
. $srcdir/diag.sh init
|
|
faketime '2016-01-01 01:00:00' $srcdir/diag.sh startup now_family_utc.conf
|
|
# what we send actually is irrelevant, as we just use system properties.
|
|
# but we need to send one message in order to gain output!
|
|
. $srcdir/diag.sh tcpflood -m1
|
|
. $srcdir/diag.sh shutdown-when-empty
|
|
. $srcdir/diag.sh wait-shutdown
|
|
echo "01:00,07:30" | cmp rsyslog.out.log
|
|
if [ ! $? -eq 0 ]; then
|
|
echo "invalid timestamps generated, rsyslog.out.log is:"
|
|
cat rsyslog.out.log
|
|
exit 1
|
|
fi;
|
|
#. $srcdir/diag.sh exit
|