diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-04-01 02:21:39 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-04-01 02:21:39 +0200 |
commit | 45f388a05a105975cdcbeab0892a2fe78a8a4416 (patch) | |
tree | 416ee82c52530d53abe1de12c692e68b14ab4434 | |
parent | 966c72f0ebab372a35d163c2b7827ae3e76b7e31 (diff) |
more logging
-rwxr-xr-x | contrib/ci/jobs/2-test/test.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/ci/jobs/2-test/test.sh b/contrib/ci/jobs/2-test/test.sh index 7cc8b8a9d..882410a98 100755 --- a/contrib/ci/jobs/2-test/test.sh +++ b/contrib/ci/jobs/2-test/test.sh @@ -29,9 +29,11 @@ print_logs() { for i in src/*/test-suite.log do + echo "Printing ${i}" + cat "$i" for FAILURE in $(grep '^FAIL:' ${i} | cut -d' ' -f2) do - echo "Printing ${FAILURE}.log" + echo "Printing $(dirname $i)/${FAILURE}.log" cat "$(dirname $i)/${FAILURE}.log" done done |