1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
From: Roland Rosenfeld <roland@debian.org>
Date: Mon, 13 Oct 2025 18:18:02 +0200
Forwarded: not-needed
Subject: Write testsuite.log to stdout on failure
This simplifies debugging in CI workflows, when testsuite fails
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -236,7 +236,7 @@ clean-local:
@test ! -f $(TESTSUITE) || $(SHELL) $(TESTSUITE) --clean
check-local: atconfig atlocal $(TESTSUITE)
- @$(SHELL) $(TESTSUITE)
+ @$(SHELL) $(TESTSUITE) || (cat testsuite.log && exit 1)
# Run the test suite on the *installed* tree.
#installcheck-local:
|