From: Richard Levitte Date: Tue, 21 Mar 2017 14:59:12 +0000 (+0100) Subject: Refuse to run the PYCA external test if configured 'no-shared' X-Git-Tag: OpenSSL_1_1_1-pre1~1968 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=34fffdb521040d3bc658c1ceaa9c79fbd191ded3;p=openssl Refuse to run the PYCA external test if configured 'no-shared' [extended tests] Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/3007) --- diff --git a/test/recipes/95-test_external_pyca.t b/test/recipes/95-test_external_pyca.t index 7ced77ea45..a64afd0a40 100644 --- a/test/recipes/95-test_external_pyca.t +++ b/test/recipes/95-test_external_pyca.t @@ -23,6 +23,8 @@ SKIP: { if ! -f srctop_file("pyca-cryptography", "setup.py"); skip "PYCA tests not available on Windows or VMS", 1 if $^O =~ /^(VMS|MSWin32)$/; + skip "PYCA tests only available in a shared build", 1 + if disabled("shared"); ok(run(cmd(["sh", data_file("cryptography.sh")])), "running Python Cryptography tests");