summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-06-15 18:50:55 +0200
committerPauli <pauli@openssl.org>2021-06-16 09:09:21 +1000
commitcb37af461dd3cb20dc38fb3710dd010046a3047e (patch)
tree1df0aa1aa68368063fab8260b64d469f1f7acc4f
parent07b8c0a18658354356870e2d42da9875aa299d9b (diff)
TEST: Skip test/recipes/01-test_symbol_presence.t on MacOS
It renames symbols, so we can a false negative Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15776)
-rw-r--r--test/recipes/01-test_symbol_presence.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t
index 2166d1bc48..edcac23978 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");