Refactor 'runtests' macro.

No change, this is just code motion and commenting.
This commit is contained in:
Richard W.M. Jones 2014-02-18 15:26:45 +00:00
parent d69a136c19
commit 380228e16d
1 changed files with 9 additions and 5 deletions

View File

@ -1,9 +1,15 @@
# Enable to run tests during check # Run tests during check. Default is enabled on most architectures.
# Default is enabled # You can override this by putting '%libguestfs_runtests 0' into
# '~/.rpmmacros'
%if %{defined libguestfs_runtests} %if %{defined libguestfs_runtests}
%global runtests %{libguestfs_runtests} %global runtests %{libguestfs_runtests}
%else %else
%ifnarch ppc ppc64
%global runtests 1 %global runtests 1
%else
# Disabled on ppc, ppc64 (secondary arches), see RHBZ#1036742.
%global runtests 0
%endif
%endif %endif
%global _hardened_build 1 %global _hardened_build 1
@ -688,12 +694,10 @@ popd
export SKIP_TEST_VIRT_ALIGNMENT_SCAN_GUESTS_SH=1 export SKIP_TEST_VIRT_ALIGNMENT_SCAN_GUESTS_SH=1
export SKIP_TEST_VIRT_DF_GUESTS_SH=1 export SKIP_TEST_VIRT_DF_GUESTS_SH=1
# Disabled on ppc, ppc64 (secondary arches), see RHBZ#1036742.
%ifnarch ppc ppc64
%if %{runtests} %if %{runtests}
make quickcheck make quickcheck
make check -k make check -k
%endif
%endif %endif