exchange

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

commit 6887d7d4998e157365b171c3f662325731664874
parent 889bd801bcd549cfb7772ccf77f22ac9b8312589
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 28 Sep 2021 12:08:33 +0200

define missing exit_skip in test

Diffstat:
Msrc/bank-lib/test_bank.sh | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/bank-lib/test_bank.sh b/src/bank-lib/test_bank.sh @@ -2,6 +2,12 @@ set -eu +# Exit, with status code "skip" (no 'real' failure) +function exit_skip() { + echo $1 + exit 77 +} + # Cleanup to run whenever we exit function cleanup() {