skip other tests failing on different architectures

This commit is contained in:
Jakub Dorňák 2016-08-22 21:06:29 +02:00
parent 9278ce6646
commit a016d3aadf
1 changed files with 14 additions and 6 deletions

View File

@ -180,15 +180,23 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/*.{la,a}
# XXX shell tests are broken due to loading system libsqlite3, work around... # XXX shell tests are broken due to loading system libsqlite3, work around...
export LD_LIBRARY_PATH=`pwd`/.libs export LD_LIBRARY_PATH=`pwd`/.libs
export MALLOC_CHECK_=3 export MALLOC_CHECK_=3
%ifarch armv7hl
# csv01 hangs on all non-intel archs i've tried
%ifarch x86_64 %{ix86}
%else
rm test/csv01.test rm test/csv01.test
%endif %endif
%ifarch s390 s390x ppc ppc64 %{sparc} %{mips}
make test || : %ifarch s390x ppc64
%else rm test/fts3conf.test
%endif
%ifarch armv7hl
rm test/trace3.test
%endif
make test make test
%endif %endif # with check
%endif
%post libs -p /sbin/ldconfig %post libs -p /sbin/ldconfig