Fix %check for failures

Run all the tests, even if some fail, and print all of the
test-suite.log files.
This commit is contained in:
Richard W.M. Jones 2022-06-23 14:24:26 +01:00
parent 707414b213
commit ae3471150b

View File

@ -99,8 +99,8 @@ make
%check
if ! make check ; then
cat test-suite.log
if ! make -k check ; then
find -name test-suite.log -exec cat {} \;
exit 1
fi