mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-13 07:10:42 +01:00
10 lines
387 B
Bash
Executable File
10 lines
387 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$CI_ENV" == "Centos7VM" ]; then
|
|
# we give up, for some reason we see errors in this env but in no other Centos 7 env
|
|
# this is a hack for rsyslog official CI - sorry for that -- rgerhards, 2019-01-24
|
|
echo "SKIP test, as for some reason it does not work here - this should be investigated"
|
|
exit 77
|
|
fi
|
|
export USE_VALGRIND="YES"
|
|
source ${srcdir:=.}/imrelp-manyconn.sh
|