diff options
author | Richard Levitte <levitte@openssl.org> | 2016-03-05 13:11:37 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-03-17 10:10:59 +0100 |
commit | a717738b45fa7ae90cf3dac0870b8d1ea2a8e173 (patch) | |
tree | 930272dba40ea23bd8bbfaa612e693b674a291ca /test/recipes/70-test_sslcertstatus.t | |
parent | 909289dfc31ca7b02652e3e9ed4e2df754fd258f (diff) | |
download | openssl-new-a717738b45fa7ae90cf3dac0870b8d1ea2a8e173.tar.gz |
Don't define OPENSSL_ENGINES in test recipes, do it in Makefiles instead
In most builds, we can assume that engines live in the build tree
subdirectory "engines". This was hard coded into the tests that use
the engine ossltest.
However, that hard coding is tedious, it would need to be done in
every test recipe, and it's an incorrect assumption in some cases.
This change has us play it safe and let the build files tell the
testing framework where the engines are.
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'test/recipes/70-test_sslcertstatus.t')
-rwxr-xr-x | test/recipes/70-test_sslcertstatus.t | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/recipes/70-test_sslcertstatus.t b/test/recipes/70-test_sslcertstatus.t index 216804ce2b..37265ed07a 100755 --- a/test/recipes/70-test_sslcertstatus.t +++ b/test/recipes/70-test_sslcertstatus.t @@ -66,7 +66,6 @@ plan skip_all => "TLSProxy isn't usable on $^O" plan skip_all => "$test_name needs the dynamic engine feature enabled" if disabled("engine") || disabled("dynamic-engine"); -$ENV{OPENSSL_ENGINES} = bldtop_dir("engines"); $ENV{OPENSSL_ia32cap} = '~0x200000200000000'; my $proxy = TLSProxy::Proxy->new( \&certstatus_filter, |