Display all test-suite.log files on error.

This commit is contained in:
Richard W.M. Jones 2019-06-27 16:29:46 +01:00
parent 29a89e725e
commit 1157082784

View File

@ -121,7 +121,11 @@ find $RPM_BUILD_ROOT -name '*.la' -delete
%check
make %{?_smp_mflags} check || {
cat tests/test-suite.log
for f in $(find -name test-suite.log); do
echo
echo "==== $f ===="
cat $f
done
exit 1
}