[openssl] master update

beldmit at gmail.com beldmit at gmail.com
Tue Jan 11 17:02:42 UTC 2022


The branch master has been updated
       via  e5fb4b1469f317aa92768cdf804dfa29b72cb8f3 (commit)
      from  2c2724476ef50b8926b033f009bdfc85ac3f1816 (commit)


- Log -----------------------------------------------------------------
commit e5fb4b1469f317aa92768cdf804dfa29b72cb8f3
Author: Dmitry Belyavskiy <beldmit at gmail.com>
Date:   Sun Jan 9 17:39:41 2022 +0100

    Don't run TLSFuzzer tests when it is not properly set
    
    Reviewed-by: Bernd Edlinger <bernd.edlinger at hotmail.de>
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/17448)

-----------------------------------------------------------------------

Summary of changes:
 test/recipes/95-test_external_tlsfuzzer.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/recipes/95-test_external_tlsfuzzer.t b/test/recipes/95-test_external_tlsfuzzer.t
index e506f8007a..265968e02d 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;


More information about the openssl-commits mailing list