commit 1e9827d28e7aa63705a1d318870967040046201e parent 429588f8144d87d49a342fdd8b3e75bf3af9fae0 Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Fri, 22 May 2026 16:40:52 +0200 correctly print logs in ci Diffstat:
| M | contrib/ci/jobs/2-test/4-test.sh | | | 11 | +++-------- |
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/contrib/ci/jobs/2-test/4-test.sh b/contrib/ci/jobs/2-test/4-test.sh @@ -9,14 +9,9 @@ check_command() print_logs() { - for i in src/*/test-suite.log - do - for FAILURE in $(grep '^FAIL:' ${i} | cut -d' ' -f2) - do - echo "Printing ${FAILURE}.log" - cat "$(dirname $i)/${FAILURE}.log" - done - done + set +e + echo "Printing meson log" + cat build/meson-logs/testlog.txt } if ! check_command ; then