- some tests are failing on s390 and ppc/ppc64 so don't fail the whole

build there
This commit is contained in:
Dan Horák 2010-07-03 11:57:52 +00:00
parent bf978b4a5f
commit 926f717bf4
1 changed files with 8 additions and 1 deletions

View File

@ -10,7 +10,7 @@
Summary: Library that implements an embeddable SQL database engine Summary: Library that implements an embeddable SQL database engine
Name: sqlite Name: sqlite
Version: %{basever}.1 Version: %{basever}.1
Release: 1%{?dist} Release: 2%{?dist}
License: Public Domain License: Public Domain
Group: Applications/Databases Group: Applications/Databases
URL: http://www.sqlite.org/ URL: http://www.sqlite.org/
@ -126,8 +126,12 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/*.{la,a}
%if %{with check} %if %{with check}
%check %check
%ifarch s390 ppc ppc64
make test || :
%else
make test make test
%endif %endif
%endif
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
@ -169,6 +173,9 @@ rm -rf $RPM_BUILD_ROOT
%endif %endif
%changelog %changelog
* Sat Jul 3 2010 Dan Horák <dan[at]danny.cz> - 3.6.23.1-2
- some tests are failing on s390 and ppc/ppc64 so don't fail the whole build there
* Mon Apr 19 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.23.1-1 * Mon Apr 19 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.23.1-1
- update to 3.6.23.1 (http://www.sqlite.org/releaselog/3_6_23_1.html) - update to 3.6.23.1 (http://www.sqlite.org/releaselog/3_6_23_1.html)