mirror of
https://github.com/openssl/openssl.git
synced 2025-12-20 01:22:19 +08:00
Skip symbol_presence test on AIX
AIX `nm` reports symbols in a different way. Fix for: #29247 Reviewed-by: Eugene Syromiatnikov <esyr@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/29276)
This commit is contained in:
committed by
Tomas Mraz
parent
ccd8451428
commit
ad29e4b134
@@ -24,6 +24,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|;
|
||||
# AIX reports symbol names differently
|
||||
plan skip_all => "Test is disabled on AIX" if config('target') =~ m|^aix|;
|
||||
plan skip_all => "This is unsupported on platforms that don't have 'nm'"
|
||||
unless IPC::Cmd::can_run('nm');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user