Merge pull request #1902 from PascalWithopf/freebsd_tests

freeBSD: disable tests that are not working
This commit is contained in:
Rainer Gerhards 2017-10-27 13:18:48 +02:00 committed by GitHub
commit 53c0aaed87
127 changed files with 858 additions and 0 deletions

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-10-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[array_lookup_table-vg.sh\]: test cleanup for array lookup-table and HUP based reloading of it
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-10-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[array_lookup_table.sh\]: test for array lookup-table and HUP based reloading of it
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-10-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[array_lookup_table-vg.sh\]: test cleanup for array lookup-table and HUP based reloading of it
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# addd 2016-03-22 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# addd 2016-03-22 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[discard-allmark.sh\]: testing discard-allmark functionality
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[discard-rptdmsg.sh\]: testing discard-rptdmsg functionality
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-03-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats-json-vg.sh\]: test for verifying stats are reported correctly in json format with valgrind
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-13 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats-vg.sh\]: test for gathering stats over dynamic metric names with valgrind
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-10 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats.sh\]: test for gathering stats over dynamic metric names
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-16 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_ctr_reset.sh\]: test to ensure correctness of stats-ctr reset
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-17 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_nometric.sh\]: test for dyn-stats meta-metric behavior with zero-length metric name
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-13 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_overflow-vg.sh\]: test for gathering stats when metrics exceed provisioned capacity
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-13 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_overflow.sh\]: test for gathering stats when metrics exceed provisioned capacity
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-04-13 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_prevent_premature_eviction-vg.sh\]: test for ensuring metrics are not evicted before unused-ttl with valgrind
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-04-13 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_prevent_premature_eviction.sh\]: test for ensuring metrics are not evicted before unused-ttl
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-13 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_reset-vg.sh\]: test for gathering stats with a known-dyn-metrics reset in-between
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-13 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_reset.sh\]: test for gathering stats with a known-dyn-metrics reset inbetween
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-16 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[dynstats_reset_without_pstats_reset.sh\]: test to ensure correctness of stats-ctr reset when pstats reset is turned off
. $srcdir/diag.sh init

View File

@ -2,6 +2,13 @@
# added 2016-10-14 by janmejay.singh
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh startup-vg fac_local0.conf
. $srcdir/diag.sh tcpflood -m1000 -P 129

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[failover-basic.sh\]: basic test for failover functionality
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[failover-no-basic.sh\]: basic test for failover functionality - no failover
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[failover-no-rptd.sh\]: rptd test for failover functionality - no failover
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[failover-rptd.sh\]: rptd test for failover functionality
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This is part of the rsyslog testbench, licensed under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This is part of the rsyslog testbench, licensed under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,12 @@
#!/bin/bash
# addd 2016-07-11 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,12 @@
#!/bin/bash
# addd 2016-07-11 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,12 @@
#!/bin/bash
# addd 2016-07-11 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This is part of the rsyslog testbench, licensed under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo [imfile-basic.sh]
. $srcdir/diag.sh init
# generate input file first. Note that rsyslog processes it as

View File

@ -3,6 +3,11 @@
echo ======================================================================
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris: FIX ME"
exit 77

View File

@ -3,6 +3,11 @@
echo ======================================================================
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris: FIX ME"
exit 77

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This is part of the rsyslog testbench, licensed under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ======================================================================
echo [imfile-endregex.sh]
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2017-04-28 by Pascal Withopf, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,12 @@
#!/bin/bash
# add 2017-04-28 by Pascal Withopf, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris: inotify isn't supported on Solaris"
exit 77

View File

@ -3,6 +3,11 @@
# This is part of the rsyslog testbench, licensed under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris does not support inotify."
exit 77

View File

@ -1,5 +1,12 @@
#!/bin/bash
# This is part of the rsyslog testbench, licensed under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ======================================================================
echo [imfile-readmode2-vg.sh]
. $srcdir/diag.sh init

View File

@ -6,6 +6,11 @@ export TESTMESSAGESFULL=19999
echo [imfile-rename.sh]
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris does not support inotify."
exit 77

View File

@ -2,6 +2,11 @@
# addd 2016-10-06 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris does not support inotify."
exit 77

View File

@ -3,6 +3,11 @@
echo [imfile-wildcards-multi.sh]
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris does not support inotify."
exit 77

View File

@ -3,6 +3,11 @@
echo [imfile-wildcards-multi2.sh]
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris does not support inotify."
exit 77

View File

@ -3,6 +3,11 @@
echo [imfile-wildcards-dirs.sh]
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris does not support inotify."
exit 77

View File

@ -3,6 +3,11 @@
echo [imfile-wildcards-dirs2.sh]
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris does not support inotify."
exit 77

View File

@ -3,6 +3,11 @@
echo [imfile-wildcards.sh]
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris does not support inotify."
exit 77

View File

@ -1,6 +1,12 @@
#!/bin/bash
# addd 2016-05-13 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,12 @@
#!/bin/bash
# addd 2016-05-13 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,12 @@
#!/bin/bash
# addd 2016-05-13 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2011-02-28 by Rgerhards
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[imtcp-tls-basic-vg.sh\]: testing imtcp in TLS mode - basic test
. $srcdir/diag.sh init

View File

@ -3,6 +3,13 @@
# added 2010-08-10 by Rgerhards
#
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ====================================================================================
echo TEST: \[imtcp_conndrop.sh\]: test imtcp with random connection drops
. $srcdir/diag.sh init

View File

@ -3,6 +3,13 @@
# added 2011-06-09 by Rgerhards
#
# This file is part of the rsyslog project, released under GPLv3
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ====================================================================================
echo TEST: \[imtcp_conndrop_tls-vg.sh\]: test imtcp/tls with random connection drops
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# Copyright (C) 2016 by Rainer Gerhardds
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -2,6 +2,11 @@
echo \[imuxsock_logger.sh\]: test imuxsock
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris: FIX ME LOGGER"
exit 77

View File

@ -1,5 +1,12 @@
#!/bin/bash
# Copyright (C) 2015-03-04 by rainer gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ======================================================================
echo \[imuxsock_logger_parserchain.sh\]: test imuxsock

View File

@ -2,9 +2,15 @@
# note: we use the system socket, but assign a different name to
# it. This is not 100% the same thing as running as root, but it
# is pretty close to it. -- rgerhards, 201602-19
echo \[imuxsock_logger_syssock.sh\]: test trailing LF handling in imuxsock
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "Solaris: FIX ME LOGGER"
exit 77

View File

@ -7,6 +7,13 @@
# is because it is not so easy to pick it up from the system log and other
# tests already cover this szenario.
# add 2017-05-10 by Rainer Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-03-31 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[json_array_looping-vg.sh\]: basic test for looping over json array with valgrind
. $srcdir/diag.sh init json_array_looping-vg.sh

View File

@ -3,6 +3,13 @@
# This file is part of the rsyslog project, released under ASL 2.0
# Note: the aim of this test is to test against misadressing, so we do
# not actually check the output
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[json_null.sh\]: test for json containung \"null\" value
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-11-17 by rgerhards
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[json_null_array.sh\]: test for json containung \"null\" value
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-03-31 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[json_object_looping-vg.sh\]: basic test for looping over json object / associative-array with valgrind
. $srcdir/diag.sh init json_object_looping-vg.sh

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-03-31 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[json_object_sucide_in_loop-vg.sh\]: basic test for looping over json object and unsetting it while inside the loop-body
. $srcdir/diag.sh init json_object_suicide_in_loop-vg.sh

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-09-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table-vg.sh\]: test for clean destory of lookup-table, when lookup-fn is used
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-09-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table.sh\]: test for lookup-table and HUP based reloading of it
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-12-02 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table_bad_configs.sh\]: test for sparse-array lookup-table and HUP based reloading of it
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-12-02 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table_bad_configs.sh\]: test for sparse-array lookup-table and HUP based reloading of it
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-09-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table_no_hup_reload-vg.sh\]: test for lookup-table with HUP based reloading disabled with valgrind
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-09-30 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table_no_hup_reload.sh\]: test for lookup-table with HUP based reloading disabled
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-12-18 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table_rscript_reload-vg.sh\]: test for lookup-table reload by rscript-fn with valgrind
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-12-18 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table_rscript_reload.sh\]: test for lookup-table reload by rscript-fn
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-12-18 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table_rscript_reload_without_stub-vg.sh\]: test for lookup-table reload by rscript-stmt without stub-value with valgrind
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2015-12-18 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[lookup_table_rscript_reload_without_stub.sh\]: test for lookup-table reload by rscript-stmt without stub
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# test many concurrent tcp connections
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo \[manytcp-too-few-tls.sh\]: test concurrent tcp connections
. $srcdir/diag.sh init
. $srcdir/diag.sh startup-vg manytcp-too-few-tls.conf

View File

@ -1,5 +1,12 @@
#!/bin/bash
# test many concurrent tcp connections
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo \[manytcp.sh\]: test concurrent tcp connections
uname

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Jan Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -3,6 +3,13 @@
# correctly parsed.
# This file is part of the rsyslog project, released under ASL 2.0
# rgerhards, 2015-04-30
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[mmpstrucdata-invalid.sh\]: testing mmpstrucdata with invalid SD
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# This file is part of the rsyslog project, released under ASL 2.0
# rgerhards, 2013-11-22
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[mmpstrucdata.sh\]: testing mmpstrucdata
. $srcdir/diag.sh init

View File

@ -4,6 +4,13 @@
# in practice.
# see also https://github.com/rsyslog/rsyslog/issues/1658
# Copyright (C) 2017 by Rainer Gerhards, released under ASL 2.0 (2017-07-11)
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
if [ `uname` = "SunOS" ] ; then
echo "This test currently does not work on all flavors of Solaris."
exit 77

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-01-20 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[multiple_lookup_table-vg.sh\]: test for multiple lookup-table and HUP based reloading of it
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-01-20 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[multiple_lookup_table.sh\]: test for multiple lookup-table and HUP based reloading of it
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2017-03-06 by Rainer Gerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Pascal Withopf, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# addd 2016-03-30 by RGerhards, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-09-20 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[omprog-cleanup-vg.sh\]: test for cleanup in omprog with valgrind
. $srcdir/diag.sh init

View File

@ -1,6 +1,13 @@
#!/bin/bash
# added 2016-11-03 by singh.janmejay
# This file is part of the rsyslog project, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
echo ===============================================================================
echo \[omprog-noterm-cleanup-vg.sh\]: test for cleanup in omprog without SIGTERM with valgrind
. $srcdir/diag.sh init

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Pascal Withopf, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Pascal Withopf, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

View File

@ -1,5 +1,12 @@
#!/bin/bash
# add 2016-11-22 by Pascal Withopf, released under ASL 2.0
uname
if [ `uname` = "FreeBSD" ] ; then
echo "This test currently does not work on FreeBSD."
exit 77
fi
. $srcdir/diag.sh init
. $srcdir/diag.sh generate-conf
. $srcdir/diag.sh add-conf '

Some files were not shown because too many files have changed in this diff Show More