summaryrefslogtreecommitdiffstats
path: root/checks/conventional.test
diff options
context:
space:
mode:
Diffstat (limited to 'checks/conventional.test')
-rwxr-xr-xchecks/conventional.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/checks/conventional.test b/checks/conventional.test
index 289a85095..87aeb9c56 100755
--- a/checks/conventional.test
+++ b/checks/conventional.test
@@ -2,22 +2,22 @@
. $srcdir/defs.inc || exit 3
-# temp. hack cause the format for 128 biut blocksize messages may change
+# temp. hack cause the format for 128 bit blocksize messages may change
GNUPG_ENABLE_TWOFISH=1
export GNUPG_ENABLE_TWOFISH
#info Checking conventional encryption
for i in plain-2 data-32000 ; do
- echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 -c -o x --yes $i
- echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 -o y --yes x
+ echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -c -o x --yes $i
+ echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -o y --yes x
cmp $i y || error "$i: mismatch"
done
for a in cast5 3des twofish; do
for i in plain-1 data-80000 ; do
- echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 \
+ echo "Hier spricht HAL" | $GPG --passphrase-fd 0 \
--cipher-algo $a -c -o x --yes $i
- echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 -o y --yes x
+ echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -o y --yes x
cmp $i y || error "$i: ($a) mismatch"
done
done