aboutsummaryrefslogtreecommitdiffstats
path: root/checks/encrypt.test
diff options
context:
space:
mode:
Diffstat (limited to 'checks/encrypt.test')
-rwxr-xr-xchecks/encrypt.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/checks/encrypt.test b/checks/encrypt.test
index 468136cca..4e5c5c042 100755
--- a/checks/encrypt.test
+++ b/checks/encrypt.test
@@ -4,13 +4,13 @@
#info Checking encryption
for i in $plain_files $data_files ; do
- $srcdir/run-gpg -e -o x --yes -r "$usrname2" $i
- $srcdir/run-gpg -o y --yes x
+ $GPG --always-trust -e -o x --yes -r "$usrname2" $i
+ $GPG -o y --yes x
cmp $i y || error "$i: mismatch"
done
for i in $plain_files $data_files ; do
- $srcdir/run-gpg -e -o x --yes -r "$usrname2" --cipher-algo cast5 $i
- $srcdir/run-gpg -o y --yes x
+ $GPG --always-trust -e -o x --yes -r "$usrname2" --cipher-algo cast5 $i
+ $GPG -o y --yes x
cmp $i y || error "$i: mismatch"
done