exchange

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

commit fa54d42dc36ab54fccfbb67a691f77c2c5b04d6a
parent 4831e7ac76d0f298c35bc340b652c27254290b28
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu,  5 Sep 2019 14:09:39 +0200

give up launching bank eventually

Diffstat:
Msrc/auditor/test-auditor.sh | 10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/auditor/test-auditor.sh b/src/auditor/test-auditor.sh @@ -42,12 +42,18 @@ function pre_audit () { # Launch bank echo -n "Launching bank " taler-bank-manage -c $CONF serve-http 2>bank.err >bank.log & - while true + for n in `seq 1 20` do echo -n "." - wget http://localhost:8082/ -o /dev/null -O /dev/null >/dev/null && break sleep 0.1 + OK=1 + wget http://localhost:8082/ -o /dev/null -O /dev/null >/dev/null && break + OK=0 done + if [ 1 != $OK ] + then + exit_skip "Failed to launch bank" + fi echo " DONE" if test ${1:-no} = "aggregator"