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)
This commit is contained in:
Matt Caswell 2021-11-23 15:22:27 +00:00 committed by Tomas Mraz
parent a44eb8421d
commit d09f4501e4

View File

@ -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");