aboutsummaryrefslogtreecommitdiffstats
path: root/test/recipes/80-test_cms.t
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-12-02 13:19:52 +0000
committerMatt Caswell <matt@openssl.org>2020-12-11 10:56:34 +0000
commit730bee525368eb01fbf221d9b1bcf590ccb5153f (patch)
tree08fa945397da4b2329be0e76e77638c6bcdb9adb /test/recipes/80-test_cms.t
parentabec331fd3ff876713ab19bb962a54ffea9a7efe (diff)
downloadopenssl-730bee525368eb01fbf221d9b1bcf590ccb5153f.tar.gz
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/80-test_cms.t')
-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;