aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2001-12-13 15:06:56 +0000
committerWerner Koch <[email protected]>2001-12-13 15:06:56 +0000
commit4922297af1c515d6fea54aa30e1bfc7c2b44da26 (patch)
tree9b537ce038fd35d282f5a2174100602ff08b225d /tests
parent* engine-gpgsm.c (_gpgme_gpgsm_op_keylist): Allow NULL for (diff)
downloadgpgme-4922297af1c515d6fea54aa30e1bfc7c2b44da26.tar.gz
gpgme-4922297af1c515d6fea54aa30e1bfc7c2b44da26.zip
Set protocol to CMS to test gpgsm
Diffstat (limited to 'tests')
-rw-r--r--tests/gpg/t-keylist.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/gpg/t-keylist.c b/tests/gpg/t-keylist.c
index 1e06d86f..2ffcd3e6 100644
--- a/tests/gpg/t-keylist.c
+++ b/tests/gpg/t-keylist.c
@@ -144,6 +144,8 @@ main (int argc, char **argv )
fail_if_err (err);
err = gpgme_new (&ctx);
+#warning debug code
+ gpgme_set_protocol (ctx, GPGME_PROTOCOL_CMS);
fail_if_err (err);
gpgme_set_keylist_mode (ctx, 1); /* no validity calculation */
do {
@@ -152,7 +154,7 @@ main (int argc, char **argv )
} while ( loop );
gpgme_release (ctx);
- check_two_contexts ();
+ /* check_two_contexts ();*/
return 0;
}