mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
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:
parent
a44eb8421d
commit
d09f4501e4
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user