From: Matthias Kraft Date: Fri, 28 Nov 2025 14:30:01 +0000 (+0100) Subject: Skip symbol_presence test on AIX X-Git-Tag: 4.0-PRE-CLANG-FORMAT-WEBKIT~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad29e4b134d533a57ef632aac86017edee65a178;p=thirdparty%2Fopenssl.git Skip symbol_presence test on AIX AIX `nm` reports symbols in a different way. Fix for: #29247 Reviewed-by: Eugene Syromiatnikov Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/29276) --- diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t index 222b1886aec..6c8de64b0b3 100644 --- a/test/recipes/01-test_symbol_presence.t +++ b/test/recipes/01-test_symbol_presence.t @@ -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');