make tests skip until we have a wallet to regen the DB

This commit is contained in:
Christian Grothoff 2020-05-01 19:48:11 +02:00
parent 18aba845fa
commit 19f51f558b
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
3 changed files with 18 additions and 2 deletions

View File

@ -8,6 +8,10 @@
set -eu
echo "Script disabled: taler-wallet-cli integration test known to fail right now!"
exit 1
trap "kill `jobs -p` &> /dev/null || true" ERR
# Exit, with status code "skip" (no 'real' failure)

View File

@ -1872,6 +1872,12 @@ else
fi
fi
check_with_database "auditor-basedb"
# run tests with pre-build database, if one is available
if test -x auditor-basedb.mpub
then
check_with_database "auditor-basedb"
else
fail=77
fi
exit $fail

View File

@ -543,6 +543,12 @@ else
fi
fi
check_with_database "revoke-basedb"
# run tests with pre-build database, if one is available
if test -x revoke-basedb.mpub
then
check_with_database "revoke-basedb"
else
fail=77
fi
exit $fail