summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/recipes/05-test_fuzz.t6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/recipes/05-test_fuzz.t b/test/recipes/05-test_fuzz.t
index ec5c5ad4ed..c992e19574 100755
--- a/test/recipes/05-test_fuzz.t
+++ b/test/recipes/05-test_fuzz.t
@@ -11,10 +11,14 @@ use warnings;
use if $^O ne "VMS", 'File::Glob' => qw/glob/;
use OpenSSL::Test qw/:DEFAULT srctop_file/;
+use OpenSSL::Test::Utils;
setup("test_fuzz");
-my @fuzzers = ('asn1', 'asn1parse', 'bignum', 'bndiv', 'cms', 'conf', 'crl', 'ct', 'server', 'x509');
+my @fuzzers = ('asn1', 'asn1parse', 'bignum', 'bndiv', 'conf', 'crl', 'ct', 'server', 'x509');
+if (!disabled("cms")) {
+ push @fuzzers, 'cms';
+}
plan tests => scalar @fuzzers;
foreach my $f (@fuzzers) {