From: Richard Levitte Date: Tue, 15 Jun 2021 16:50:55 +0000 (+0200) Subject: TEST: Skip test/recipes/01-test_symbol_presence.t on MacOS X-Git-Tag: openssl-3.0.0-beta1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb37af461dd3cb20dc38fb3710dd010046a3047e;p=thirdparty%2Fopenssl.git TEST: Skip test/recipes/01-test_symbol_presence.t on MacOS It renames symbols, so we can a false negative Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/15776) --- diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t index 2166d1bc486..edcac239782 100644 --- a/test/recipes/01-test_symbol_presence.t +++ b/test/recipes/01-test_symbol_presence.t @@ -21,6 +21,8 @@ use lib bldtop_dir('.'); 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 => "Only useful when building shared libraries" if disabled("shared");