diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2021-02-20 20:15:20 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2021-02-20 20:16:34 +0100 |
commit | 95534d55bd27ec9311a484ddc4e4a550191aa496 (patch) | |
tree | b3a39d3038fc3db81137f97ddf55c426721de50f /test | |
parent | 5cf25633d48f79f39ab8c35883e1e437b3a058e4 (diff) |
Add tests for OpenSSL- and GnuPG-encrypted account keys.
These tests are not interactive!
Diffstat (limited to 'test')
-rwxr-xr-x | test | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -55,7 +55,8 @@ if [ $# -eq 0 ]; then # always start with registration, the account key might be new TESTS+=( "register" ) for t in tests/*; do - if [ "$t" != "tests/register" ] && [ -f "$t" ]; then + if [ "$t" != "tests/register" ] && [ "${t#tests/account-encrypted-}" = "$t" ] && [ -f "$t" ]; then + # skip registration and non-interactive tests TESTS+=( "${t#tests/}" ) fi done |