summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-04-08 13:35:02 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-04-08 13:35:02 +0200
commite18611710a1bd310e0603de384f12ed2a50c9dbf (patch)
tree61cef56bc238ad5e3486bb163dc9875758f34149
parentdc1b2b4bcea4592f4d2042220ee87c894d28482c (diff)
downloadlibtasn1-e18611710a1bd310e0603de384f12ed2a50c9dbf.tar.gz
tests: removed OCSP choice known issue tags; it is now resolved
-rw-r--r--tests/Test_choice_ocsp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Test_choice_ocsp.c b/tests/Test_choice_ocsp.c
index 2deff39..d4183b6 100644
--- a/tests/Test_choice_ocsp.c
+++ b/tests/Test_choice_ocsp.c
@@ -63,14 +63,14 @@ main (int argc, char** argv)
if (len != data_size)
{
- printf ("length doesn't match (got: %d, should be: %d): known issue\n", len, data_size);
- exit (77);
+ printf ("length doesn't match (got: %d, should be: %d)\n", len, data_size);
+ exit (1);
}
if (memcmp(data, data2, len) != 0)
{
- printf ("contents don't match: known issue\n");
- exit (77);
+ printf ("contents don't match\n");
+ exit (1);
}
asn1_delete_structure (&node1);