summaryrefslogtreecommitdiffstats
path: root/test/asn1_internal_test.c
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2017-06-20 07:58:14 +1000
committerRich Salz <rsalz@openssl.org>2017-06-19 22:37:16 -0400
commita7b68c5b246dcad44270c321d6734b0a10c2633d (patch)
treeca6a745b6039e64b4125782dc544bce749cc503f /test/asn1_internal_test.c
parent6e5e196748b3dbfd2919b23e5b21688885e72881 (diff)
Address double error and OSSLzu comments.
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3710)
Diffstat (limited to 'test/asn1_internal_test.c')
-rw-r--r--test/asn1_internal_test.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/test/asn1_internal_test.c b/test/asn1_internal_test.c
index f2caa763ef..38ef6100c1 100644
--- a/test/asn1_internal_test.c
+++ b/test/asn1_internal_test.c
@@ -45,9 +45,9 @@ static int test_tbl_standard()
return 1;
}
- TEST_error("asn1 tbl_standard: out of order");
+ TEST_info("asn1 tbl_standard: out of order");
for (tmp = tbl_standard, i = 0; i < OSSL_NELEM(tbl_standard); i++, tmp++)
- TEST_note("asn1 tbl_standard: Index %" OSSLzu ", NID %d, Name=%s",
+ TEST_note("asn1 tbl_standard: Index %zu, NID %d, Name=%s",
i, tmp->nid, OBJ_nid2ln(tmp->nid));
return 0;
@@ -82,12 +82,11 @@ static int test_standard_methods()
return 1;
}
- TEST_error("asn1 standard methods: out of order");
+ TEST_note("asn1 standard methods: out of order");
for (tmp = standard_methods, i = 0; i < OSSL_NELEM(standard_methods);
i++, tmp++)
- TEST_note("asn1 standard methods: Index %" OSSLzu
- ", pkey ID %d, Name=%s", i, (*tmp)->pkey_id,
- OBJ_nid2sn((*tmp)->pkey_id));
+ TEST_note("asn1 standard methods: Index %zu, pkey ID %d, Name=%s",
+ i, (*tmp)->pkey_id, OBJ_nid2sn((*tmp)->pkey_id));
return 0;
}