From: Dr. David von Oheimb Date: Wed, 5 May 2021 10:32:18 +0000 (+0200) Subject: 80-test_cmp_http.t: Improve fuzzing exclusion pattern X-Git-Tag: openssl-3.0.0-alpha17~210 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab9d1af955ef71c0000bc27140623481a003d35c;p=thirdparty%2Fopenssl.git 80-test_cmp_http.t: Improve fuzzing exclusion pattern Fixes #14966 Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/15158) --- diff --git a/test/recipes/80-test_cmp_http.t b/test/recipes/80-test_cmp_http.t index bfae899040b..5b9796e6ee7 100644 --- a/test/recipes/80-test_cmp_http.t +++ b/test/recipes/80-test_cmp_http.t @@ -22,7 +22,7 @@ use lib srctop_dir('Configurations'); use lib bldtop_dir('.'); plan skip_all => "These tests are not supported in a fuzz build" - if config('options') =~ /-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION/; + if config('options') =~ /-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION|fuzz-afl/; plan skip_all => "These tests are not supported in a no-cmp build" if disabled("cmp");