aboutsummaryrefslogtreecommitdiffstats
path: root/tests/gpgsm/t-support.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2003-11-19 15:15:33 +0000
committerWerner Koch <[email protected]>2003-11-19 15:15:33 +0000
commit82cb03cc834a911ad626435a1236bfb9a9241bb0 (patch)
treee72490c1327cf2c4b5dd52e244dc7a2796201fcc /tests/gpgsm/t-support.h
parent* conversion.c (_gpgme_parse_timestamp): New. (diff)
downloadgpgme-82cb03cc834a911ad626435a1236bfb9a9241bb0.tar.gz
gpgme-82cb03cc834a911ad626435a1236bfb9a9241bb0.zip
* gpg/t-support.h (DIM): Added.
* gpg/t-verify.c (check_result): Rewrote test for notations because the order of notaions is not guaranteed. * gpgsm/t-support.h (fail_if_err): Also print the numeric values.
Diffstat (limited to '')
-rw-r--r--tests/gpgsm/t-support.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/gpgsm/t-support.h b/tests/gpgsm/t-support.h
index 3199b056..32a7b19e 100644
--- a/tests/gpgsm/t-support.h
+++ b/tests/gpgsm/t-support.h
@@ -30,9 +30,10 @@
{ \
if (err) \
{ \
- fprintf (stderr, "%s:%d: %s: %s\n", \
+ fprintf (stderr, "%s:%d: %s: %s (%d.%d)\n", \
__FILE__, __LINE__, gpg_strsource (err), \
- gpg_strerror (err)); \
+ gpg_strerror (err), \
+ gpg_err_source (err), gpg_err_code (err)); \
exit (1); \
} \
} \