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