summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-12-02 14:19:52 +0100
committerMatt Caswell <matt@openssl.org>2020-12-11 11:56:34 +0100
commit730bee525368eb01fbf221d9b1bcf590ccb5153f (patch)
tree08fa945397da4b2329be0e76e77638c6bcdb9adb /test/recipes
parentDon't run a legacy specific PKCS12 test if no legacy provider (diff)
downloadopenssl-730bee525368eb01fbf221d9b1bcf590ccb5153f.tar.xz
openssl-730bee525368eb01fbf221d9b1bcf590ccb5153f.zip
Skip cms tests using RC2 if no legacy provider
Fixes #12510 Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13595)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/80-test_cms.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/recipes/80-test_cms.t b/test/recipes/80-test_cms.t
index 2cc778624b..6783897139 100644
--- a/test/recipes/80-test_cms.t
+++ b/test/recipes/80-test_cms.t
@@ -49,6 +49,8 @@ my $smcont_zero = srctop_file("test", "smcont_zero.txt");
my ($no_des, $no_dh, $no_dsa, $no_ec, $no_ec2m, $no_rc2, $no_zlib)
= disabled qw/des dh dsa ec ec2m rc2 zlib/;
+$no_rc2 = 1 if disabled("legacy");
+
plan tests =>
($no_fips ? 0 : 1) # FIPS install test
+ 10;