aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2021-11-23 15:22:27 +0000
committerTomas Mraz <tomas@openssl.org>2021-12-06 16:45:25 +0100
commitd09f4501e47e0b969caec5a3059af52d227e961a (patch)
tree803fa8fd68bfbd8265dd31ed8d44bae55ceeb9a2
parenta44eb8421d0e84c069a5fa55ced796878e6b0966 (diff)
downloadopenssl-d09f4501e47e0b969caec5a3059af52d227e961a.tar.gz
Don't run the symbol presence test on windows
Fixes #17109 Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17119)
-rw-r--r--test/recipes/01-test_symbol_presence.t3
1 files changed, 2 insertions, 1 deletions
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");