[openssl] master update
tomas at openssl.org
tomas at openssl.org
Mon Dec 6 15:45:45 UTC 2021
The branch master has been updated
via d09f4501e47e0b969caec5a3059af52d227e961a (commit)
from a44eb8421d0e84c069a5fa55ced796878e6b0966 (commit)
- Log -----------------------------------------------------------------
commit d09f4501e47e0b969caec5a3059af52d227e961a
Author: Matt Caswell <matt at openssl.org>
Date: Tue Nov 23 15:22:27 2021 +0000
Don't run the symbol presence test on windows
Fixes #17109
Reviewed-by: Paul Dale <pauli at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Tomas Mraz <tomas at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17119)
-----------------------------------------------------------------------
Summary of changes:
test/recipes/01-test_symbol_presence.t | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t
index 5be59bb7e1..efe0760c25 100644
--- a/test/recipes/01-test_symbol_presence.t
+++ b/test/recipes/01-test_symbol_presence.t
@@ -23,7 +23,8 @@ use platform;
plan skip_all => "Test is disabled on NonStop" if config('target') =~ m|^nonstop|;
# MacOS arranges symbol names differently
plan skip_all => "Test is disabled on MacOS" if config('target') =~ m|^darwin|;
-plan skip_all => "Test is disabled on MinGW" if config('target') =~ m|^mingw|;
+plan skip_all => "This is unsupported on MSYS, MinGW or MSWin32"
+ if $^O eq 'msys' or $^O eq 'MSWin32' or config('target') =~ m|^mingw|;
plan skip_all => "Only useful when building shared libraries"
if disabled("shared");
More information about the openssl-commits
mailing list