mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-17 08:10:43 +01:00
12 lines
317 B
Bash
Executable File
12 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
export USE_VALGRIND="YES"
|
|
export NUMMESSAGES=10000 # reduce for slower valgrind run
|
|
source ${srcdir:-.}/imtcp_conndrop_tls.sh
|
|
|
|
uname
|
|
if [ $(uname) = "FreeBSD" ] ; then
|
|
echo "This test currently does not work on FreeBSD."
|
|
exit 77
|
|
fi
|