If the test suite failed, print the errors we have collected from
each failing test, so that we can diagnose them just from the logs.
---
utils/run-checks | 3 +++
1 file changed, 3 insertions(+)
diff --git a/utils/run-checks b/utils/run-checks
index e5845906..5b691582 100755
--- a/utils/run-checks
+++ b/utils/run-checks
@@ -23,6 +23,9 @@ done
if test -s check.log
then
echo At least one check failed, see \`check.log\'.
+ echo ',----- check.log ----.'
+ cat check.log
+ echo '`-----'
else
echo All checks OK.
rm -f check.log
--
2.43.0