diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-09-05 14:09:39 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-09-05 14:09:39 +0200 |
commit | fa54d42dc36ab54fccfbb67a691f77c2c5b04d6a (patch) | |
tree | a2376626179474492cd89df2b7f6c125c235edf6 | |
parent | 4831e7ac76d0f298c35bc340b652c27254290b28 (diff) |
give up launching bank eventually
-rwxr-xr-x | src/auditor/test-auditor.sh | 10 |
1 files changed, 8 insertions, 2 deletions
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" |