mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
VMS perl doesn't implement fork(), so don't run the TLSProxy tests there
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
This commit is contained in:
parent
bdb1d0c24b
commit
60f9f1e1c8
@ -59,6 +59,9 @@ use TLSProxy::Proxy;
|
||||
my $test_name = "test_sslcertstatus";
|
||||
setup($test_name);
|
||||
|
||||
plan skip_all => "TLSProxy isn't usable on $^O"
|
||||
if $^O =~ /^VMS$/;
|
||||
|
||||
plan skip_all => "$test_name can only be performed with OpenSSL configured shared"
|
||||
unless (map { s/\R//; s/^SHARED_LIBS=\s*//; $_ }
|
||||
grep { /^SHARED_LIBS=/ }
|
||||
|
@ -59,6 +59,9 @@ use TLSProxy::Proxy;
|
||||
my $test_name = "test_sslextension";
|
||||
setup($test_name);
|
||||
|
||||
plan skip_all => "TLSProxy isn't usable on $^O"
|
||||
if $^O =~ /^VMS$/;
|
||||
|
||||
plan skip_all => "$test_name can only be performed with OpenSSL configured shared"
|
||||
unless (map { s/\R//; s/^SHARED_LIBS=\s*//; $_ }
|
||||
grep { /^SHARED_LIBS=/ }
|
||||
|
@ -60,6 +60,9 @@ use File::Temp qw(tempfile);
|
||||
my $test_name = "test_sslsessiontick";
|
||||
setup($test_name);
|
||||
|
||||
plan skip_all => "TLSProxy isn't usable on $^O"
|
||||
if $^O =~ /^VMS$/;
|
||||
|
||||
plan skip_all => "$test_name can only be performed with OpenSSL configured shared"
|
||||
unless (map { s/\R//; s/^SHARED_LIBS=\s*//; $_ }
|
||||
grep { /^SHARED_LIBS=/ }
|
||||
|
@ -60,6 +60,9 @@ use TLSProxy::Proxy;
|
||||
my $test_name = "test_sslskewith0p";
|
||||
setup($test_name);
|
||||
|
||||
plan skip_all => "TLSProxy isn't usable on $^O"
|
||||
if $^O =~ /^VMS$/;
|
||||
|
||||
plan skip_all => "$test_name can only be performed with OpenSSL configured shared"
|
||||
unless (map { s/\R//; s/^SHARED_LIBS=\s*//; $_ }
|
||||
grep { /^SHARED_LIBS=/ }
|
||||
|
@ -59,6 +59,9 @@ use TLSProxy::Proxy;
|
||||
my $test_name = "test_sslextension";
|
||||
setup($test_name);
|
||||
|
||||
plan skip_all => "TLSProxy isn't usable on $^O"
|
||||
if $^O =~ /^VMS$/;
|
||||
|
||||
plan skip_all => "$test_name can only be performed with OpenSSL configured shared"
|
||||
unless (map { s/\R//; s/^SHARED_LIBS=\s*//; $_ }
|
||||
grep { /^SHARED_LIBS=/ }
|
||||
|
@ -60,6 +60,9 @@ use File::Temp qw(tempfile);
|
||||
my $test_name = "test_tlsextms";
|
||||
setup($test_name);
|
||||
|
||||
plan skip_all => "TLSProxy isn't usable on $^O"
|
||||
if $^O =~ /^VMS$/;
|
||||
|
||||
plan skip_all => "$test_name can only be performed with OpenSSL configured shared"
|
||||
unless (map { s/\R//; s/^SHARED_LIBS=\s*//; $_ }
|
||||
grep { /^SHARED_LIBS=/ }
|
||||
|
Loading…
Reference in New Issue
Block a user