~ubuntu-branches/ubuntu/feisty/gnupg2/feisty

« back to all changes in this revision

Viewing changes to tests/openpgp/seat.test

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-11-24 18:48:23 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061124184823-17ir9m46tl09n9k4
Tags: 2.0.0-4ubuntu1
* Synchronize to Debian, reapply remaining Ubuntu changes to pristine Debian
  version:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
. $srcdir/defs.inc || exit 3
 
4
 
 
5
for i in $plain_files ; do
 
6
    echo "$usrpass1" | $GPG --passphrase-fd 0 --always-trust -seat \
 
7
                        -r two -o x --yes $i
 
8
    $GPG -o y --yes x
 
9
    cmp $i y || error "$i: mismatch"
 
10
done
 
11