The branch openssl-3.0 has been updated via af80b01d1d8e2ff0587548ef78c1ad799d7e448d (commit) from d635d7481b66a6326087196f616d09c240126b74 (commit)
- Log ----------------------------------------------------------------- commit af80b01d1d8e2ff0587548ef78c1ad799d7e448d Author: Matt Caswell <m...@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 <pa...@openssl.org> Reviewed-by: Richard Levitte <levi...@openssl.org> Reviewed-by: Tomas Mraz <to...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17119) (cherry picked from commit d09f4501e47e0b969caec5a3059af52d227e961a) ----------------------------------------------------------------------- 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");