diff options
Diffstat (limited to 'checks/conventional.test')
-rwxr-xr-x | checks/conventional.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/checks/conventional.test b/checks/conventional.test index 9176c0c44..dbf831000 100755 --- a/checks/conventional.test +++ b/checks/conventional.test @@ -4,14 +4,14 @@ #info Checking conventional encryption for i in plain-2 data-32000 ; do - echo "Hier spricht HAL" | ./run-gpg --passphrase-fd 0 -c -o x --yes $i - echo "Hier spricht HAL" | ./run-gpg --passphrase-fd 0 -o y --yes x + 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 cmp $i y || error "$i: mismatch" done for i in plain-1 data-80000 ; do - echo "Hier spricht HAL" | ./run-gpg --passphrase-fd 0 \ + echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 \ --cipher-algo cast5 -c -o x --yes $i - echo "Hier spricht HAL" | ./run-gpg --passphrase-fd 0 -o y --yes x + echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 -o y --yes x cmp $i y || error "$i: mismatch" done |