VMS perl doesn't implement fork(), so don't run the TLSProxy tests there
[openssl.git] / test / recipes / 70-test_sslextension.t
index 4aa3f61f7d2b0863fb84bd9591545b428882d388..f0b465df794570a58c2955bfe907d68cf51f3d4f 100755 (executable)
@@ -59,8 +59,11 @@ 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 { chomp; s/^SHARED_LIBS=\s*//; $_ }
+    unless (map { s/\R//; s/^SHARED_LIBS=\s*//; $_ }
            grep { /^SHARED_LIBS=/ }
            do { local @ARGV = ( top_file("Makefile") ); <> })[0] ne "";