[openssl] master update

Matt Caswell matt at openssl.org
Tue Feb 26 10:45:44 UTC 2019


The branch master has been updated
       via  565a19eef35926b4b9675f6cc3964fb290a5b380 (commit)
      from  13d928d38b5ba4f8085cf750bf3fd55685f92a61 (commit)


- Log -----------------------------------------------------------------
commit 565a19eef35926b4b9675f6cc3964fb290a5b380
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Feb 26 11:22:16 2019 +0100

    Disable 02-test_errstr.t on msys/mingw as well as MSWin32
    
    There is too high a risk that perl and OpenSSL are linked with
    different C RTLs, and thereby get different messages for even the most
    mundane error numbers.
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/8343)

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

Summary of changes:
 test/recipes/02-test_errstr.t | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/test/recipes/02-test_errstr.t b/test/recipes/02-test_errstr.t
index a9e8ed4..3498b81 100644
--- a/test/recipes/02-test_errstr.t
+++ b/test/recipes/02-test_errstr.t
@@ -31,6 +31,12 @@ setup('test_errstr');
 plan skip_all => 'This is unsupported for cross compiled configurations'
     if config('CROSS_COMPILE');
 
+# The same can be said when compiling OpenSSL with mingw configuration
+# on Windows when built with msys perl.  Similar problems are also observed
+# in MSVC builds, depending on the perl implementation used.
+plan skip_all => 'This is unsupported on MSYS/MinGW or MSWin32'
+    if $^O eq 'msys' or $^O eq 'MSWin32';
+
 plan skip_all => 'OpenSSL is configured "no-autoerrinit" or "no-err"'
     if disabled('autoerrinit') || disabled('err');
 


More information about the openssl-commits mailing list