Ignore test suite results for aarch64 rather than not run it

This commit is contained in:
Xavier Bachelot 2017-03-08 02:57:45 +01:00
parent 1e4682c164
commit 84da46c135
1 changed files with 7 additions and 3 deletions

View File

@ -65,10 +65,14 @@ autoreconf -vif
%make_install
rm -f %{buildroot}%{_docdir}/sysbench/manual.html
%ifnarch aarch64
# Test suite segfaults in koji aarch64
# Although it works on different aarch64 hardware...
%check
cd tests
%ifnarch aarch64
./test_run.sh
%else
./test_run.sh || :
%endif
%files
@ -79,11 +83,11 @@ cd tests
%changelog
* Sun Feb 26 2017 Xavier Bachelot <xavier@bachelot.org> 1.0.3-1
* Wed Mar 08 2017 Xavier Bachelot <xavier@bachelot.org> 1.0.3-1
- Update to 1.0.3 (RHBZ#1424670).
- Restrict arches to the same ones as luajit.
- Add --with-gcc-arch=native to configure for %%{arm} and aarch64.
- Disable test suite for aarch64, it segfaults in koji.
- Ignore test suite results for aarch64, it segfaults in koji.
* Sat Feb 25 2017 Xavier Bachelot <xavier@bachelot.org> 1.0.2-2
- Run test suite.