]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Skip symbol_presence test on AIX
authorMatthias Kraft <Matthias.Kraft@ibm.com>
Fri, 28 Nov 2025 14:30:01 +0000 (15:30 +0100)
committerTomas Mraz <tomas@openssl.org>
Wed, 3 Dec 2025 16:29:30 +0000 (17:29 +0100)
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)

test/recipes/01-test_symbol_presence.t

index 222b1886aec01f78d476441575a1dcd85650268b..6c8de64b0b3228a0f45e11c3bbf1c67790572880 100644 (file)
@@ -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');