diff options
author | Werner Koch <[email protected]> | 2004-02-17 17:26:20 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-02-17 17:26:20 +0000 |
commit | 91d3e5aa57bd9a75e77ddbd4753897b6a372c323 (patch) | |
tree | c15ce77f929f69dcbb165711bdf206ac20a73426 /tests/gpgsm/t-import.c | |
parent | * gpgme.texi (Key Listing Mode): Doc KEYLIST_MODE_VALIDATE. (diff) | |
download | gpgme-91d3e5aa57bd9a75e77ddbd4753897b6a372c323.tar.gz gpgme-91d3e5aa57bd9a75e77ddbd4753897b6a372c323.zip |
* gpgsm/t-import.c (check_result): gpgsm does now return info in
the result->imports; adjust for that.
* gpgsm/Makefile.am (TESTS_ENVIRONMENT): Reset the GPG_AGENT_INFO.
* gpg/t-keylist-sig.c (main): s/class/sig_class/.
* gpg/t-signers.c (check_result): Ditto.
* gpg/t-sign.c (check_result): Ditto.
* gpg/t-encrypt-sign.c (check_result): Ditto.
* gpgsm/t-sign.c (check_result): Ditto.
Diffstat (limited to '')
-rw-r--r-- | tests/gpgsm/t-import.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/tests/gpgsm/t-import.c b/tests/gpgsm/t-import.c index 43381569..82704922 100644 --- a/tests/gpgsm/t-import.c +++ b/tests/gpgsm/t-import.c @@ -18,6 +18,12 @@ along with GPGME; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* We need to include config.h so that we know whether we are building + with large file system (LFS) support. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdlib.h> #include <stdio.h> #include <string.h> @@ -110,11 +116,20 @@ check_result (gpgme_import_result_t result, char *fpr, int total) result->not_imported); exit (1); } - if (result->imports) + + { + int n; + gpgme_import_status_t r; + + for (n=0, r=result->imports; r; r=r->next) + n++; + + if (n != total) { fprintf (stderr, "Unexpected number of status reports\n"); exit (1); } + } } |