Commit 2dd400bd authored by Richard Levitte's avatar Richard Levitte
Browse files

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: default avatarRich Salz <rsalz@openssl.org>
parent 343ec2b0
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -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';
+2 −5
Original line number Diff line number Diff line
@@ -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';
+2 −5
Original line number Diff line number Diff line
@@ -64,11 +64,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';
+2 −5
Original line number Diff line number Diff line
@@ -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");

plan skip_all => "dh is not supported by this OpenSSL build"
    if disabled("dh");
+2 −5
Original line number Diff line number Diff line
@@ -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';
Loading