donau

Donation authority for GNU Taler (experimental)
Log | Files | Refs | Submodules | README | LICENSE

commit 8155b1b3dd7cd4690e136095d8b2fba93207ada7
parent 10635a82da387cbbcdbadc8a0d2f5e579f377726
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Sun, 12 Apr 2026 14:43:16 +0200

ci: fix test log output

Diffstat:
Mcontrib/ci/jobs/2-test/test.sh | 13++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/contrib/ci/jobs/2-test/test.sh b/contrib/ci/jobs/2-test/test.sh @@ -7,6 +7,7 @@ apt-get upgrade -yqq ./bootstrap ./configure CFLAGS="-ggdb -O0" \ --prefix=/usr/local \ + --libdir=lib \ --enable-logging=verbose \ --disable-doc make @@ -28,16 +29,14 @@ 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" - tail "$(dirname $i)/${FAILURE}.log" - done + set +e + log=build/meson-logs/testlog.txt + echo "Printing ${log}" + cat "$log" done } + if ! check_command ; then print_logs exit 1