aboutsummaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-06-18 07:42:22 +0200
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-06-22 16:41:24 +0200
commit713b3f76a769e8961884b85bac5f207f76bc96ef (patch)
tree2779bb520e81531695b7eef84619e4038d11a23a /test/recipes
parent7d40faca54e64e9c6efa48c6d11e46d3037121c4 (diff)
downloadopenssl-713b3f76a769e8961884b85bac5f207f76bc96ef.tar.gz
81-test_cmp_cli.t: Disable CLI-based tests in case fuzzing is enabled
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> (Merged from https://github.com/openssl/openssl/pull/12175)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/81-test_cmp_cli.t6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/recipes/81-test_cmp_cli.t b/test/recipes/81-test_cmp_cli.t
index 516aebc6ae..8ddb3c2daf 100644
--- a/test/recipes/81-test_cmp_cli.t
+++ b/test/recipes/81-test_cmp_cli.t
@@ -20,10 +20,12 @@ use Data::Dumper; # for debugging purposes only
setup("test_cmp_cli");
-plan skip_all => "This test is not supported in a no-cmp build"
+plan skip_all => "These tests are not supported in a no-cmp build"
if disabled("cmp");
-plan skip_all => "This test is not supported in a no-ec build"
+plan skip_all => "These tests are not supported in a no-ec build"
if disabled("ec");
+plan skip_all => "These tests are not supported in a fuzz build"
+ if !disabled("fuzz-libfuzzer") || !disabled("fuzz-afl");
plan skip_all => "Tests involving server not available on Windows or VMS"
if $^O =~ /^(VMS|MSWin32)$/;