Move some test exclusions around.

This commit is contained in:
Jason Tibbitts 2018-01-04 14:12:35 -06:00
parent 79b2fd58ff
commit 397b5b4b0a

View File

@ -9,7 +9,7 @@
Name: cyrus-imapd
Version: 3.0.5
Release: 1%{?dist}
Release: 2%{?dist}
%define ssl_pem_file /etc/pki/%name/%name.pem
@ -476,6 +476,8 @@ tests=(
# we should consider dropping it entirely.
ImapTest.urlauth2
# Not sure why this one is failing.
Caldav.changes_remove
)
for i in ${tests[@]}; do exclude+=("!$i"); done
@ -483,7 +485,6 @@ for i in ${tests[@]}; do exclude+=("!$i"); done
# The update to libical3 caused two additional failures, reported upstream as
# https://github.com/cyrusimap/cyrus-imapd/issues/2200
tests=(
Caldav.changes_remove
JMAPCalendars.getcalendareventlist_datetime
JMAPCalendars.setcalendarevents_recurrenceoverrides
)
@ -495,6 +496,7 @@ tests=(
# Without libcal3 or a patch to libical2, the following test will fail
# https://github.com/cyrusimap/cyrus-imapd/issues/2048
JMAPCalendars.setcalendarevents_alerts
JMAPCalendars.setcalendarevents_endtimezone_recurrence
)
for i in ${tests[@]}; do exclude+=("!$i"); done
%endif
@ -637,6 +639,9 @@ getent passwd cyrus >/dev/null || /usr/sbin/useradd -c "Cyrus IMAP Server" -d /v
%changelog
* Thu Jan 04 2018 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.0.5-2
- Reorganize some test exclusions so things build on all releases.
* Thu Jan 04 2018 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.0.5-1
- Update to 3.0.5.
- Add one new failing test.