summaryrefslogtreecommitdiff
path: root/test/recipes
diff options
context:
space:
mode:
authorslontis <shane.lontis@oracle.com>2022-11-15 12:38:31 +1000
committerHugo Landau <hlandau@openssl.org>2023-05-05 17:11:16 +0100
commitbcd94b6335e37304a170d89977a2382fae370a97 (patch)
treec3e676015643d7aa82cdf9c6bac1381b0012abda /test/recipes
parentf612673049b93387eb7f93c207aca821496da861 (diff)
downloadopenssl-new-bcd94b6335e37304a170d89977a2382fae370a97.tar.gz
Add libctx to x931 keygen.
Added coverage test that failed without the change. Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Todd Short <todd.short@me.com> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19677)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/15-test_rsa.t9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/recipes/15-test_rsa.t b/test/recipes/15-test_rsa.t
index 420a57f8c1..c3c0bc34d6 100644
--- a/test/recipes/15-test_rsa.t
+++ b/test/recipes/15-test_rsa.t
@@ -1,5 +1,5 @@
#! /usr/bin/env perl
-# Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
+# Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the Apache License 2.0 (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
@@ -16,7 +16,7 @@ use OpenSSL::Test::Utils;
setup("test_rsa");
-plan tests => 12;
+plan tests => 14;
require_ok(srctop_file('test', 'recipes', 'tconversion.pl'));
@@ -33,6 +33,11 @@ sub run_rsa_tests {
"$cmd -check" );
SKIP: {
+ skip "Skipping Deprecated rsa_x931_test", 1 if disabled("deprecated-3.0");
+ ok(run(test(['rsa_x931_test'])), "RSA X931 test");
+ };
+
+ SKIP: {
skip "Skipping $cmd conversion test", 3
if disabled("rsa");