summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-08-31 17:07:44 +0200
committerRichard Levitte <richard@levitte.org>2016-08-31 17:44:15 +0200
commitfd2107e077c94b61df7dcca0cc1aed9b833927dd (patch)
treec6e5e489ba17c73056dab1e4bafe5739d66c6c12 /test
parentad2aa727cda07b324c447aab654cd77da2914c3b (diff)
Make it possible to disable fuzz testing
These tests take a very long time on some platforms, and arent't always strictly necessary. This makes it possible to turn them off. The necessary binaries are still built, though, in case someone still wants to do a manual run. Reviewed-by: Andy Polyakov <appro@openssl.org> (cherry picked from commit eb40eaed727500bf4a15f848c99e37edd18e142e)
Diffstat (limited to 'test')
-rwxr-xr-xtest/recipes/05-test_fuzz.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/recipes/05-test_fuzz.t b/test/recipes/05-test_fuzz.t
index d152925733..f1ccfe32f8 100755
--- a/test/recipes/05-test_fuzz.t
+++ b/test/recipes/05-test_fuzz.t
@@ -15,6 +15,9 @@ use OpenSSL::Test::Utils;
setup("test_fuzz");
+plan skip_all => "Fuzz testing is disabled by this OpenSSL build"
+ if disabled("fuzz-test");
+
my @fuzzers = ('asn1', 'asn1parse', 'bignum', 'bndiv', 'conf', 'crl', 'server', 'x509');
if (!disabled("cms")) {
push @fuzzers, 'cms';