1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-28 21:50:02 +02:00
gnupg/checks/clearsig.test

21 lines
792 B
Plaintext
Raw Normal View History

1998-02-26 17:56:31 +01:00
#!/bin/sh
. defs.inc || exit 3
#info Checking cleartext signatures
1998-04-14 19:51:16 +02:00
# There is a minor glitch, which appends an lf to the cleartext.
1998-02-26 17:56:31 +01:00
# I do not consider that a bug, but I have to use the head .. mimic.
# It is not clear what should happen to leading LFs, we must
# change the defintion of cleartext, so that only 1 empty line
# must follow the headers, but some specs say: any number of empty lines ..
# clean-sat removes leading LFs
# I know that this does not work for random data files (due to large lines
# or what ever) - I hope we can live with it.
for i in $plain_files; do
1998-04-08 21:42:07 +02:00
echo "$usrpass1" | ./run-gpg --passphrase-fd 0 -sat -o x --yes $i
./run-gpg -o y --yes x
1998-02-26 17:56:31 +01:00
../tools/clean-sat < $i > z
head -c $[ $(cat y | wc -c) - 1 ] y | diff - z || error "$i: mismatch"
done