From ab9d1af955ef71c0000bc27140623481a003d35c Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Wed, 5 May 2021 12:32:18 +0200 Subject: [PATCH] 80-test_cmp_http.t: Improve fuzzing exclusion pattern Fixes #14966 Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/15158) --- test/recipes/80-test_cmp_http.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.47.2