From: Dmitry Belyavskiy Date: Sun, 9 Jan 2022 16:39:41 +0000 (+0100) Subject: Don't run TLSFuzzer tests when it is not properly set X-Git-Tag: openssl-3.2.0-alpha1~3099 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5fb4b1469f317aa92768cdf804dfa29b72cb8f3;p=thirdparty%2Fopenssl.git Don't run TLSFuzzer tests when it is not properly set Reviewed-by: Bernd Edlinger Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/17448) --- diff --git a/test/recipes/95-test_external_tlsfuzzer.t b/test/recipes/95-test_external_tlsfuzzer.t index e506f8007a7..265968e02df 100644 --- a/test/recipes/95-test_external_tlsfuzzer.t +++ b/test/recipes/95-test_external_tlsfuzzer.t @@ -18,8 +18,8 @@ plan skip_all => "No external tests in this configuration" if disabled("external-tests"); plan skip_all => "TLSFuzzer tests not available on Windows or VMS" if $^O =~ /^(VMS|MSWin32)$/; -plan skip_all => "TLSFuzzer tests not supported in out of tree builds" - if bldtop_dir() ne srctop_dir(); +plan skip_all => "TLSFuzzer is not properly checked out" + unless (-d srctop_dir("tlsfuzzer") && -d srctop_dir("tlsfuzzer", "tests")); $ENV{TESTDATADIR} = abs_path(data_dir()); plan tests => 1;