1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

New tests

This commit is contained in:
Werner Koch 1998-04-08 19:42:07 +00:00
parent 232547e4c0
commit 8ab0adb9f8
23 changed files with 153 additions and 58 deletions

View file

@ -4,9 +4,9 @@
#info Checking armored encryption with a pipe
for i in $plain_files $data_files ; do
run_gpg -ea --yes -r "$usrname2" < $i | tee x | run_gpg -o y --yes
./run-gpg -ea --yes -r "$usrname2" < $i | tee x | ./run-gpg -o y --yes
cmp $i y || error "$i: mismatch"
run_gpg --yes < x > y
./run-gpg --yes < x > y
cmp $i y || error "$i: mismatch"
done