Disable one test on 32-bit machines.

I failed to notice that the Cassandane update had caused an additional
failure on 32-bit, reported upstream as
https://github.com/cyrusimap/cyrus-imapd/issues/2042
This commit is contained in:
Jason Tibbitts 2017-06-27 14:39:38 -05:00
parent a1d17f04c3
commit cdeac93ae7

View File

@ -9,7 +9,7 @@
Name: cyrus-imapd
Version: 3.0.2
Release: 1%{?dist}
Release: 2%{?dist}
%define ssl_pem_file /etc/pki/%name/%name.pem
@ -478,6 +478,15 @@ tests=(
)
for i in ${tests[@]}; do exclude+=("!$i"); done
%ifarch i686 armv7hl
# Just this one test is now failing on 32-bit machines. I'm not sure why.
# https://github.com/cyrusimap/cyrus-imapd/issues/2042
tests=(
JMAPCalendars.setcalendarevents_recurrence
)
for i in ${tests[@]}; do exclude+=("!$i"); done
%endif
%ifarch ppc64 s390x
# Some failures only on big-endian machines for some reason
# Reported upstream at https://github.com/cyrusimap/cyrus-imapd/issues/2040
@ -623,6 +632,10 @@ getent passwd cyrus >/dev/null || /usr/sbin/useradd -c "Cyrus IMAP Server" -d /v
%changelog
* Tue Jun 27 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.0.2-2
- Exclude one more test from 32-bit arches. Looks like this failure crept in
with the Cassandane update.
* Thu Jun 22 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.0.2-1
- Update to 3.0.2.
- New Cassandane snapshot, with more tests (all of which are passing).