diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-05-01 19:48:11 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-05-01 19:48:11 +0200 |
commit | 922d3be4eb08518f7bda491ed45f58a326356ef5 (patch) | |
tree | 40f80cd5d0af5a2530ac71c8b7621f4f4ab4d6ff /src/auditor/test-revocation.sh | |
parent | b81da19a9f959d1d564b18bd82f6d29e23defae4 (diff) |
make tests skip until we have a wallet to regen the DB
Diffstat (limited to 'src/auditor/test-revocation.sh')
-rwxr-xr-x | src/auditor/test-revocation.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/auditor/test-revocation.sh b/src/auditor/test-revocation.sh index 714fcc8a..1b5070a3 100755 --- a/src/auditor/test-revocation.sh +++ b/src/auditor/test-revocation.sh @@ -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 |