From fa54d42dc36ab54fccfbb67a691f77c2c5b04d6a Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 5 Sep 2019 14:09:39 +0200 Subject: give up launching bank eventually --- src/auditor/test-auditor.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/auditor') diff --git a/src/auditor/test-auditor.sh b/src/auditor/test-auditor.sh index 5ac019436..a7b8a733a 100755 --- 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" -- cgit v1.2.3