exchange

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

commit 50ab7137c083b3d8ea0157b3824b48172f2b91ce
parent 22c13c1f0839695c22b64acee00606a7200c3bf0
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  1 Apr 2024 14:27:31 +0200

-add strace for debugging

Diffstat:
Mcontrib/ci/Containerfile | 1+
Msrc/templating/dotest.sh | 3++-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile @@ -10,6 +10,7 @@ RUN apt-get update -yqq && \ bash \ coreutils \ git \ + strace \ libcurl4-gnutls-dev \ libgcrypt-dev \ libidn11-dev \ diff --git a/src/templating/dotest.sh b/src/templating/dotest.sh @@ -10,9 +10,10 @@ mustach="../mustach" echo "starting test" if test "$NOVALGRIND" = 1 then + strace -f $mustach "$@" $mustach "$@" > resu.last || exit_fail "ERROR! mustach command failed ($?)!" else - valgrind $mustach "$@" > resu.last 2> vg.last || exit_fail "ERROR! mustach command failed ($?)!" + valgrind $mustach "$@" > resu.last 2> vg.last || exit_fail "ERROR! valgrind + mustach command failed ($?)!" sed -i 's:^==[0-9]*== ::' vg.last awk '/^ *total heap usage: .* allocs, .* frees,.*/{if($$4-$$6)exit(1)}' vg.last || exit_fail "ERROR! Alloc/Free issue" fi