summaryrefslogtreecommitdiffstats
path: root/checks/encrypt-dsa.test
diff options
context:
space:
mode:
Diffstat (limited to 'checks/encrypt-dsa.test')
-rwxr-xr-xchecks/encrypt-dsa.test8
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