1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-12 18:59:50 +03:00

main/openldap: only disable failing tests

This commit is contained in:
Sertonix 2025-05-11 14:27:29 +02:00 committed by Natanael Copa
parent ad33dffef4
commit 8478adeeec

View file

@ -158,14 +158,6 @@ _extra_modules="
lastbind
"
# s390x: fails test001-slapadd
# armhf: fails test046-dds
case "$CARCH" in
s390x|armhf)
options="!check"
;;
esac
prepare() {
default_prepare
@ -226,10 +218,11 @@ _configure() {
}
check() {
# FIXME: Failing network tests on some platforms.
rm -f tests/scripts/test018-syncreplication-persist
rm -f tests/scripts/test063-delta-multiprovider
rm -f tests/scripts/test079-proxy-timeout
case "$CARCH" in
# FIXME tests fail
s390x) rm tests/scripts/test001-slapadd ;;
armhf) rm tests/scripts/test046-dds ;;
esac
make test
}