mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 05:10:40 +01:00
testbench: cleanup, including fix of false positives some environments have faulty components; also some tests failed simply because their runtime *is* far longer than supported by default. Also re-instantiated some "lost" tests and done some general cleanup.
9 lines
295 B
Bash
Executable File
9 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$(valgrind --version)" == "valgrind-3.11.0" ]; then
|
|
printf 'This test does NOT work with valgrind-3.11.0 - valgrind always reports\n'
|
|
printf 'a valgrind-internal bug. So we need to skip it.\n'
|
|
exit 77
|
|
fi
|
|
export USE_VALGRIND="YES"
|
|
source ${srcdir:-.}/imtcp-tls-ossl-basic.sh
|