summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNicola Tuveri <nicola.tuveri@ibm.com>2020-03-27 12:02:48 +0100
committerNicola Tuveri <nic.tuv@gmail.com>2020-03-30 17:06:56 +0300
commit551543e5e2779fbb242cca40813f3bea4f6f43d0 (patch)
tree53dc40fd7b5e31019f692bf21715ade8962e9c18 /test
parente15d369781eb2e97656ebbabef576b8079d86b8c (diff)
Add test for providers exposing OSSL_FUNC_PROVIDER_GET_REASON_STRINGS
This test currently fails, next commit has the description of the bug and the fix. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11427)
Diffstat (limited to 'test')
-rw-r--r--test/p_test.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/p_test.c b/test/p_test.c
index bc354be95d..ac1f4c200d 100644
--- a/test/p_test.c
+++ b/test/p_test.c
@@ -41,6 +41,7 @@ static const OSSL_PARAM p_param_types[] = {
/* This is a trick to ensure we define the provider functions correctly */
static OSSL_provider_gettable_params_fn p_gettable_params;
static OSSL_provider_get_params_fn p_get_params;
+static OSSL_provider_get_reason_strings_fn p_get_reason_strings;
static const OSSL_PARAM *p_gettable_params(void *_)
{
@@ -100,9 +101,21 @@ static int p_get_params(void *vprov, OSSL_PARAM params[])
return ok;
}
+static const OSSL_ITEM *p_get_reason_strings(void *_)
+{
+ static const OSSL_ITEM reason_strings[] = {
+ {1, "dummy reason string"},
+ {0, NULL}
+ };
+
+ return reason_strings;
+}
+
static const OSSL_DISPATCH p_test_table[] = {
{ OSSL_FUNC_PROVIDER_GETTABLE_PARAMS, (void (*)(void))p_gettable_params },
{ OSSL_FUNC_PROVIDER_GET_PARAMS, (void (*)(void))p_get_params },
+ { OSSL_FUNC_PROVIDER_GET_REASON_STRINGS,
+ (void (*)(void))p_get_reason_strings},
{ 0, NULL }
};