aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2003-05-04 22:06:06 +0000
committerMarcus Brinkmann <[email protected]>2003-05-04 22:06:06 +0000
commit78a8c77482322f39fda5c1d63f549419f0ee3b37 (patch)
tree1a3399568ce79e1bbcf1d0f394d08a1e4ae9b17c
parent2003-05-04 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-78a8c77482322f39fda5c1d63f549419f0ee3b37.tar.gz
gpgme-78a8c77482322f39fda5c1d63f549419f0ee3b37.zip
2003-05-04 Marcus Brinkmann <[email protected]>
* gpg/t-keylist-sig.c (main): Remove timestamp check.
-rw-r--r--trunk/tests/ChangeLog2
-rw-r--r--trunk/tests/gpg/t-keylist-sig.c25
2 files changed, 5 insertions, 22 deletions
diff --git a/trunk/tests/ChangeLog b/trunk/tests/ChangeLog
index 7dc7d8ea..0374e1df 100644
--- a/trunk/tests/ChangeLog
+++ b/trunk/tests/ChangeLog
@@ -1,5 +1,7 @@
2003-05-04 Marcus Brinkmann <[email protected]>
+ * gpg/t-keylist-sig.c (main): Remove timestamp check.
+
* gpgsm/t-keylist.c: Add check for timestamp.
* gpg/Makefile.am (TESTS): Add t-keylist-sig.
diff --git a/trunk/tests/gpg/t-keylist-sig.c b/trunk/tests/gpg/t-keylist-sig.c
index d51c434a..66b26a3c 100644
--- a/trunk/tests/gpg/t-keylist-sig.c
+++ b/trunk/tests/gpg/t-keylist-sig.c
@@ -51,7 +51,6 @@ struct
{
GpgmePubKeyAlgo algo;
char *keyid;
- int timestamp;
char *name;
char *comment;
char *email;
@@ -64,13 +63,13 @@ keys[] =
{
{ "A0FF4590BB6122EDEF6E3C542D727CC768697734", "6AE6D7EE46A871F8",
{ { "Alpha Test", "demo key", "[email protected]",
- { GPGME_PK_DSA, "2D727CC768697734", 1052065447,
+ { GPGME_PK_DSA, "2D727CC768697734",
"Alpha Test", "demo key", "[email protected]", 19, 1 } },
{ "Alice", "demo key", NULL,
- { GPGME_PK_DSA, "2D727CC768697734", 1052065447,
+ { GPGME_PK_DSA, "2D727CC768697734",
"Alpha Test", "demo key", "[email protected]", 19, 1 } },
{ "Alfa Test", "demo key", "[email protected]",
- { GPGME_PK_DSA, "2D727CC768697734", 1052065447,
+ { GPGME_PK_DSA, "2D727CC768697734",
"Alpha Test", "demo key", "[email protected]", 19, 1 } } } },
{ NULL }
};
@@ -399,12 +398,6 @@ main (int argc, char **argv)
key->uids->signatures->keyid);
exit (1);
}
- if (keys[i].uid[0].sig.timestamp != key->uids->signatures->timestamp)
- {
- fprintf (stderr, "Unexpected timestamp in first user ID sig: %li\n",
- key->uids->signatures->timestamp);
- exit (1);
- }
if (strcmp (keys[i].uid[0].sig.name, key->uids->signatures->name))
{
fprintf (stderr, "Unexpected name in first user ID sig: %s\n",
@@ -491,12 +484,6 @@ main (int argc, char **argv)
key->uids->next->signatures->keyid);
exit (1);
}
- if (keys[i].uid[1].sig.timestamp != key->uids->next->signatures->timestamp)
- {
- fprintf (stderr, "Unexpected timestamp in second user ID sig: %li\n",
- key->uids->next->signatures->timestamp);
- exit (1);
- }
if (strcmp (keys[i].uid[1].sig.name, key->uids->next->signatures->name))
{
fprintf (stderr, "Unexpected name in second user ID sig: %s\n",
@@ -586,12 +573,6 @@ main (int argc, char **argv)
key->uids->next->next->signatures->keyid);
exit (1);
}
- if (keys[i].uid[2].sig.timestamp != key->uids->next->next->signatures->timestamp)
- {
- fprintf (stderr, "Unexpected timestamp in third user ID sig: %li\n",
- key->uids->next->next->signatures->timestamp);
- exit (1);
- }
if (strcmp (keys[i].uid[2].sig.name, key->uids->next->next->signatures->name))
{
fprintf (stderr, "Unexpected name in third user ID sig: %s\n",