diff options
Diffstat (limited to 'tests/openpgp/armsigs.scm')
-rwxr-xr-x | tests/openpgp/armsigs.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/openpgp/armsigs.scm b/tests/openpgp/armsigs.scm new file mode 100755 index 000000000..33ea7d8c8 --- /dev/null +++ b/tests/openpgp/armsigs.scm @@ -0,0 +1,13 @@ +#!/usr/bin/env gpgscm + +(load (with-path "defs.scm")) + +(for-each-p + "Checking armored signatures" + (lambda (source) + (tr:do + (tr:open source) + (tr:gpg usrpass1 `(--yes --passphrase-fd "0" -sa --recipient ,usrname2)) + (tr:gpg "" '(--yes)) + (tr:assert-identity source))) + (append plain-files data-files)) |