diff options
author | Werner Koch <[email protected]> | 2010-10-14 16:34:31 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-10-14 16:34:31 +0000 |
commit | 764e88d4df29204be6ea2206cf753c56ec0f5b5f (patch) | |
tree | d38aa151706b32ce1ddbec2e7f012d317618072a /tests/openpgp/encrypt-dsa.test | |
parent | Some tweaks to the agent startup. (diff) | |
download | gnupg-764e88d4df29204be6ea2206cf753c56ec0f5b5f.tar.gz gnupg-764e88d4df29204be6ea2206cf753c56ec0f5b5f.zip |
All tests work are again working
Diffstat (limited to 'tests/openpgp/encrypt-dsa.test')
-rwxr-xr-x | tests/openpgp/encrypt-dsa.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/openpgp/encrypt-dsa.test b/tests/openpgp/encrypt-dsa.test index 01fe33aa8..ed474d0ed 100755 --- a/tests/openpgp/encrypt-dsa.test +++ b/tests/openpgp/encrypt-dsa.test @@ -12,17 +12,17 @@ #info Checking encryption for i in $plain_files $data_files ; do - $GPG $dsa_keyrings --always-trust -e -o x --yes -r "$dsa_usrname2" $i - $GPG $dsa_keyrings -o y --yes x + $GPG --always-trust -e -o x --yes -r "$dsa_usrname2" $i + $GPG -o y --yes x cmp $i y || error "$i: mismatch" done for ca in `all_cipher_algos` ; do echo_n "$ca " for i in $plain_files $data_files ; do - $GPG $dsa_keyrings --always-trust --cipher-algo $ca -e \ + $GPG --always-trust --cipher-algo $ca -e \ -o x --yes -r "$dsa_usrname2" $i - $GPG $dsa_keyrings -o y --yes x + $GPG -o y --yes x cmp $i y || error "$i: mismatch" done done |