diff options
author | Werner Koch <wk@gnupg.org> | 1998-09-14 17:49:56 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-09-14 17:49:56 +0200 |
commit | c07a88da5d293db89726767fef58090177b423f4 (patch) | |
tree | 7ea1d5d10d3e65cf29c4b03616772fb4c829f4d1 /checks/encrypt-dsa.test | |
parent | Updates (diff) | |
download | gnupg2-c07a88da5d293db89726767fef58090177b423f4.tar.xz gnupg2-c07a88da5d293db89726767fef58090177b423f4.zip |
New release
Diffstat (limited to 'checks/encrypt-dsa.test')
-rwxr-xr-x | checks/encrypt-dsa.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/checks/encrypt-dsa.test b/checks/encrypt-dsa.test index b809700b1..ba0564fd8 100755 --- a/checks/encrypt-dsa.test +++ b/checks/encrypt-dsa.test @@ -4,16 +4,16 @@ #info Checking encryption for i in $plain_files $data_files ; do - ./run-gpg $dsa_keyrings -e -o x --yes -r "$dsa_usrname2" $i - ./run-gpg $dsa_keyrings -o y --yes x + $srcdir/run-gpg $dsa_keyrings -e -o x --yes -r "$dsa_usrname2" $i + $srcdir/run-gpg $dsa_keyrings -o y --yes x cmp $i y || error "$i: mismatch" done # and with cast for i in $plain_files $data_files ; do - ./run-gpg $dsa_keyrings --cipher-algo cast5 -e \ + $srcdir/run-gpg $dsa_keyrings --cipher-algo cast5 -e \ -o x --yes -r "$dsa_usrname2" $i - ./run-gpg $dsa_keyrings -o y --yes x + $srcdir/run-gpg $dsa_keyrings -o y --yes x cmp $i y || error "$i: mismatch" done |