Temporarily skip ppc64 tests

Tests on ppc64le are hanging koji, despite the forced timeout.
The rpmbuild finishes normally - even building rpms - but the
hung testcase keeps koji from seeing it as "done".

So skip tests on ppc64le for now, until we can fix the hang.
This commit is contained in:
DJ Delorie 2019-07-23 14:35:04 -04:00
parent 3306a47dce
commit 29bc5d8e70

View File

@ -1,7 +1,7 @@
Summary: Tracks runtime library calls from dynamically linked executables
Name: ltrace
Version: 0.7.91
Release: 34%{?dist}
Release: 35%{?dist}
URL: http://ltrace.alioth.debian.org/
License: GPLv2+
@ -182,7 +182,10 @@ make DESTDIR=$RPM_BUILD_ROOT bindir=%{_bindir} install
# koji for some reason. Disable it, but have it handy.
%check
echo ====================TESTING=========================
# The ppc64 testsuite hangs rpmbuild hard in koji, disable until fixed.
%ifnarch ppc64le
timeout 180 make check ||:
%endif
echo ====================TESTING END=====================
%files
@ -193,6 +196,9 @@ echo ====================TESTING END=====================
%{_datadir}/ltrace
%changelog
* Tue Jul 23 2019 DJ Delorie <dj@redhat.com> - 0.7.91-35
- Skip ppc64 testsuite until the hangs in koji can be fixed.
* Wed Jul 17 2019 DJ Delorie <dj@redhat.com> - 0.7.91-34
- Add fixes in handling of bogus paths that come from XDG_CONFIG_DIRS.
- Testsuite fixes for pre-installed config files.