make tests skip until we have a wallet to regen the DB
This commit is contained in:
parent
18aba845fa
commit
19f51f558b
@ -8,6 +8,10 @@
|
|||||||
set -eu
|
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
|
trap "kill `jobs -p` &> /dev/null || true" ERR
|
||||||
|
|
||||||
# Exit, with status code "skip" (no 'real' failure)
|
# Exit, with status code "skip" (no 'real' failure)
|
||||||
|
@ -1872,6 +1872,12 @@ else
|
|||||||
fi
|
fi
|
||||||
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
|
exit $fail
|
||||||
|
@ -543,6 +543,12 @@ else
|
|||||||
fi
|
fi
|
||||||
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
|
exit $fail
|
||||||
|
Loading…
Reference in New Issue
Block a user