summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-07-22 15:49:03 +0100
committerMatt Caswell <matt@openssl.org>2016-07-25 08:18:14 +0100
commit49dadc1cb74dd1c83983900b5c4acb22c647af31 (patch)
tree24574b32ecd00b091ad0c9f1f9c6f55e364e21a6 /test
parentc1054bb4d2a2e730d8ecb25037904f7d9a7f137d (diff)
Fix no-ct
Ensure that we don't build/run the ct fuzzing code if no-ct is used. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test')
-rwxr-xr-xtest/recipes/05-test_fuzz.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/recipes/05-test_fuzz.t b/test/recipes/05-test_fuzz.t
index c992e19574..d152925733 100755
--- a/test/recipes/05-test_fuzz.t
+++ b/test/recipes/05-test_fuzz.t
@@ -15,10 +15,13 @@ use OpenSSL::Test::Utils;
setup("test_fuzz");
-my @fuzzers = ('asn1', 'asn1parse', 'bignum', 'bndiv', 'conf', 'crl', 'ct', 'server', 'x509');
+my @fuzzers = ('asn1', 'asn1parse', 'bignum', 'bndiv', 'conf', 'crl', 'server', 'x509');
if (!disabled("cms")) {
push @fuzzers, 'cms';
}
+if (!disabled("ct")) {
+ push @fuzzers, 'ct';
+}
plan tests => scalar @fuzzers;
foreach my $f (@fuzzers) {