summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-03-21 15:59:12 +0100
committerRichard Levitte <levitte@openssl.org>2017-03-21 23:24:34 +0100
commit34fffdb521040d3bc658c1ceaa9c79fbd191ded3 (patch)
treeba75d417be7dc90b6473fb4cabc7c6fd9fa96327 /test/recipes
parentcd838c655289951989fb47826cb753b365cfcec3 (diff)
Refuse to run the PYCA external test if configured 'no-shared'
[extended tests] Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3007)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/95-test_external_pyca.t2
1 files changed, 2 insertions, 0 deletions
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");