diff options
Diffstat (limited to '')
-rwxr-xr-x | checks/conventional.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/checks/conventional.test b/checks/conventional.test index dbf831000..5492ac988 100755 --- a/checks/conventional.test +++ b/checks/conventional.test @@ -14,4 +14,10 @@ for i in plain-1 data-80000 ; do 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" | $srcdir/run-gpg --passphrase-fd 0 \ + --cipher-algo 3des -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 |