exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 45f388a05a105975cdcbeab0892a2fe78a8a4416
parent 966c72f0ebab372a35d163c2b7827ae3e76b7e31
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  1 Apr 2024 02:21:39 +0200

more logging

Diffstat:
Mcontrib/ci/jobs/2-test/test.sh | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 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