~ubuntu-branches/ubuntu/karmic/gnupg2/karmic-updates

« back to all changes in this revision

Viewing changes to tests/openpgp/signencrypt.test

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-10-04 10:25:53 UTC
  • mfrom: (5.1.15 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081004102553-fv62pp8dsitxli47
Tags: 2.0.9-3.1
* Non-maintainer upload.
* agent/gpg-agent.c: Deinit the threading library before exec'ing
  the command to run in --daemon mode. And because that still doesn't
  restore the sigprocmask, do that manually. Closes: #499569

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Copyright 1998,1999,2000,2001,2002,2003,2004,2005,2006,
 
3
#           2007 Free Software Foundation, Inc.
 
4
# This file is free software; as a special exception the author gives
 
5
# unlimited permission to copy and/or distribute it, with or without
 
6
# modifications, as long as this notice is preserved.  This file is
 
7
# distributed in the hope that it will be useful, but WITHOUT ANY
 
8
# WARRANTY, to the extent permitted by law; without even the implied
 
9
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
10
 
 
11
. $srcdir/defs.inc || exit 3
 
12
 
 
13
 
 
14
info "Checking signing and encryption"
 
15
for i in $plain_files $data_files ; do
 
16
    echo "$usrpass1" | $GPG --passphrase-fd 0 --always-trust \
 
17
                            -se -o x --yes -r "$usrname2" $i
 
18
    $GPG -o y --yes x
 
19
    cmp $i y || error "$i: mismatch"
 
20
done
 
21
 
 
22
i=$srcdir/bug537-test.data.asc
 
23
info "Checking bug 537: MDC problem with old style compressed packets."
 
24
echo "$usrpass1" | $GPG --passphrase-fd 0 -o y --yes $i
 
25
tmp=`$GPG --with-colons --print-md sha1 <y`
 
26
if [ "$tmp" != ":2:4336AE2A528FAE091E73E59E325B588FEE795F9B:" ]; then
 
27
  error "$i: mismatch (bug 537)"
 
28
fi
 
29
 
 
30
 
 
31
 
 
32
 
 
33
 
 
34