mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
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)
This commit is contained in:
parent
7d40faca54
commit
713b3f76a7
@ -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)$/;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user