Disable "make check" on arm builds; right now the test suite is broken

there and raises false positives constantly.

Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
Peter Jones 2014-11-13 09:46:21 -05:00
parent 78ef26571f
commit 16069362e2
1 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
Name: grubby
Version: 8.35
Release: 8%{?dist}
Release: 9%{?dist}
Summary: Command line tool for updating bootloader configs
Group: System Environment/Base
License: GPLv2+
@ -58,8 +58,10 @@ git config --unset user.name
%build
make %{?_smp_mflags}
%ifnarch aarch64 %{arm}
%check
make test
%endif
%install
rm -rf $RPM_BUILD_ROOT
@ -74,7 +76,6 @@ echo " " >> $RPM_BUILD_ROOT/boot/boot.scr
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{!?_licensedir:%global license %%doc}
@ -89,6 +90,10 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Thu Nov 13 2014 Peter Jones <pjones@redhat.com> - 8.35-9
- Disable "make check" on arm builds; right now the test suite is broken
there and raises false positives constantly.
* Mon Oct 27 2014 Peter Jones <pjones@redhat.com> - 8.35-8
- Treat kernel and kernel-core as identical in terms of --make-default
Resolves: rhbz#1141414