tests: Add diagnostic example to run-import.c

* tests/run-import.c (main): Show diagnostics in verbose mode.
This commit is contained in:
Andre Heinecke 2019-01-15 08:36:26 +01:00
parent 66376f3e20
commit ce327f994a
No known key found for this signature in database
GPG Key ID: 2978E9D40CBABA5C

View File

@ -125,6 +125,20 @@ main (int argc, char **argv)
gpgme_data_release (data);
}
if (verbose)
{
gpgme_data_t log;
char *buf;
size_t len;
gpgme_data_new (&log);
err = gpgme_op_getauditlog (ctx, log, GPGME_AUDITLOG_DIAG);
fail_if_err (err);
buf = gpgme_data_release_and_get_mem (log, &len);
printf ("\nDiagnostic output:\n%.*s\n", len, buf);
free (buf);
}
gpgme_release (ctx);
return 0;
}