diff options
author | Werner Koch <[email protected]> | 2014-02-10 09:41:48 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-02-10 09:41:48 +0000 |
commit | ea7f895319e89150e5613b6d20f21410f99d6f22 (patch) | |
tree | d03d61bc902ff92cde27043a699357cc90edc1b1 /tests/openpgp/signencrypt-dsa.test | |
parent | Silence annoying ABI change warning. (diff) | |
download | gnupg-ea7f895319e89150e5613b6d20f21410f99d6f22.tar.gz gnupg-ea7f895319e89150e5613b6d20f21410f99d6f22.zip |
tests: Handle disabled algorithms.
* tests/openpgp/mds.test: Skip disabled algorithms.
* tests/openpgp/signencrypt-dsa.test: Ditto.
* tests/openpgp/sigs-dsa.test: Ditto.
Diffstat (limited to '')
-rwxr-xr-x | tests/openpgp/signencrypt-dsa.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/openpgp/signencrypt-dsa.test b/tests/openpgp/signencrypt-dsa.test index 94730998a..dd724c97e 100755 --- a/tests/openpgp/signencrypt-dsa.test +++ b/tests/openpgp/signencrypt-dsa.test @@ -18,7 +18,14 @@ for i in $plain_files $data_files ; do cmp $i y || error "$i: mismatch" done -for da in ripemd160 sha1; do +algos="sha1" +if have_hash_algo "RIPEMD160"; then + algos="ripemd160 $algos" +else + echo "Hash algorithm RIPEMD160 is not installed (not an error)" +fi + +for da in $algos; do for i in $plain_files; do $GPG --always-trust -se -o x --yes --digest-algo $da \ -u "$dsa_usrname1" -r "$dsa_usrname2" $i |