summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-01-13 03:53:47 +0100
committerRichard Levitte <levitte@openssl.org>2016-01-13 19:00:14 +0100
commit60f9f1e1c821eea5bf6969e6eee578b1f0eccf9d (patch)
tree6440282ab679f2f7734b9bd17064018d2964795a /test
parentbdb1d0c24b3df3e2253cd8289cd619093524464e (diff)
VMS perl doesn't implement fork(), so don't run the TLSProxy tests there
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'test')
-rwxr-xr-xtest/recipes/70-test_sslcertstatus.t3
-rwxr-xr-xtest/recipes/70-test_sslextension.t3
-rwxr-xr-xtest/recipes/70-test_sslsessiontick.t3
-rwxr-xr-xtest/recipes/70-test_sslskewith0p.t3
-rwxr-xr-xtest/recipes/70-test_sslvertol.t3
-rw-r--r--test/recipes/70-test_tlsextms.t3
6 files changed, 18 insertions, 0 deletions
diff --git a/test/recipes/70-test_sslcertstatus.t b/test/recipes/70-test_sslcertstatus.t
index 32e2680a68..0be0ccbd62 100755
--- a/test/recipes/70-test_sslcertstatus.t
+++ b/test/recipes/70-test_sslcertstatus.t
@@ -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=/ }
diff --git a/test/recipes/70-test_sslextension.t b/test/recipes/70-test_sslextension.t
index bd99b19b09..f0b465df79 100755
--- a/test/recipes/70-test_sslextension.t
+++ b/test/recipes/70-test_sslextension.t
@@ -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=/ }
diff --git a/test/recipes/70-test_sslsessiontick.t b/test/recipes/70-test_sslsessiontick.t
index 9209fd7f41..4cac25522d 100755
--- a/test/recipes/70-test_sslsessiontick.t
+++ b/test/recipes/70-test_sslsessiontick.t
@@ -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=/ }
diff --git a/test/recipes/70-test_sslskewith0p.t b/test/recipes/70-test_sslskewith0p.t
index b3c5dc1d38..b20157f391 100755
--- a/test/recipes/70-test_sslskewith0p.t
+++ b/test/recipes/70-test_sslskewith0p.t
@@ -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=/ }
diff --git a/test/recipes/70-test_sslvertol.t b/test/recipes/70-test_sslvertol.t
index 78c64105be..031dd9a3dc 100755
--- a/test/recipes/70-test_sslvertol.t
+++ b/test/recipes/70-test_sslvertol.t
@@ -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=/ }
diff --git a/test/recipes/70-test_tlsextms.t b/test/recipes/70-test_tlsextms.t
index cdda7f8c7f..763f7e8304 100644
--- a/test/recipes/70-test_tlsextms.t
+++ b/test/recipes/70-test_tlsextms.t
@@ -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=/ }