Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-20 00:13:11 +0300
committerRichard Levitte <levitte@openssl.org>2016-02-20 18:51:31 +0300
commit2dd400bd435b3be3240b6d509a9a6737a642c37c (patch)
tree88dd332db7f91a8e9e33e58a72c3a6715d64a43f /test/recipes/70-test_sslcertstatus.t
parent343ec2b083b82ccf9ce96020bc95320390296f1f (diff)
Run the TLSProxy based tests as long as dynamic engines are built.
They depend on this feature because they use the engine ossltest, which is only available as a dynamic engine. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/recipes/70-test_sslcertstatus.t')
-rwxr-xr-xtest/recipes/70-test_sslcertstatus.t7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/recipes/70-test_sslcertstatus.t b/test/recipes/70-test_sslcertstatus.t
index 303de5e566..9987e79b20 100755
--- a/test/recipes/70-test_sslcertstatus.t
+++ b/test/recipes/70-test_sslcertstatus.t
@@ -63,11 +63,8 @@ setup($test_name);
plan skip_all => "TLSProxy isn't usable on $^O"
if $^O =~ /^VMS$/;
-plan skip_all => "$test_name needs the engine feature enabled"
- if disabled("engine");
-
-plan skip_all => "$test_name can only be performed with OpenSSL configured shared"
- if disabled("shared");
+plan skip_all => "$test_name needs the dynamic engine feature enabled"
+ if disabled("engine") || disabled("dynamic_engines");
$ENV{OPENSSL_ENGINES} = bldtop_dir("engines");
$ENV{OPENSSL_ia32cap} = '~0x200000200000000';