Don't test w/services on FreeBSD since it errors mysteriously atm.

This commit is contained in:
Bram Matthys 2019-12-30 19:06:41 +01:00
parent 2c23d4299c
commit ca576944e6
No known key found for this signature in database
GPG key ID: BF8116B163EAAE98

View file

@ -24,8 +24,14 @@ git clone -q https://github.com/unrealircd/unrealircd-tests.git
cd unrealircd-tests
# Run the test framework, testing both services:
./run -services anope || exit 1
./run -services atheme || exit 1
if uname -a|grep -q FreeBSD; then
# FreeBSD runs without services since they fail mysteriously:
./run -services none || exit 1
else
# Linux tests both with anope and atheme services:
./run -services anope || exit 1
./run -services atheme || exit 1
fi
# Do cipherscan test at the end
if [[ "$OSTYPE" != "freebsd"* ]]; then