]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
TEST: Skip test/recipes/01-test_symbol_presence.t on MacOS
authorRichard Levitte <levitte@openssl.org>
Tue, 15 Jun 2021 16:50:55 +0000 (18:50 +0200)
committerPauli <pauli@openssl.org>
Tue, 15 Jun 2021 23:09:21 +0000 (09:09 +1000)
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)

test/recipes/01-test_symbol_presence.t

index 2166d1bc4865e2f9d46028ebc1ac5126d0bd004f..edcac2397828b2e7c830715338a94b9ed28854de 100644 (file)
@@ -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");