VMS adjustments:

test/cms-test.pl adjusted to handle NL: instead of /dev/null on VMS

Reviewed-by: Andy Polyakov <appro@openssl.org>
This commit is contained in:
Richard Levitte 2015-01-29 14:35:46 +01:00
parent 36759bb751
commit 36ed7adfbc

View File

@ -58,19 +58,24 @@ my $redir = " 2> cms.err > cms.out";
# Make VMS work # Make VMS work
if ( $^O eq "VMS" && -f "OSSLX:openssl.exe" ) { if ( $^O eq "VMS" && -f "OSSLX:openssl.exe" ) {
$ossl_path = "pipe mcr OSSLX:openssl"; $ossl_path = "pipe mcr OSSLX:openssl";
$null_path = "NL:";
} }
# Make MSYS work # Make MSYS work
elsif ( $^O eq "MSWin32" && -f "../apps/openssl.exe" ) { elsif ( $^O eq "MSWin32" && -f "../apps/openssl.exe" ) {
$ossl_path = "cmd /c ..\\apps\\openssl"; $ossl_path = "cmd /c ..\\apps\\openssl";
$null_path = "/dev/null";
} }
elsif ( -f "../apps/openssl$ENV{EXE_EXT}" ) { elsif ( -f "../apps/openssl$ENV{EXE_EXT}" ) {
$ossl_path = "../util/shlib_wrap.sh ../apps/openssl"; $ossl_path = "../util/shlib_wrap.sh ../apps/openssl";
$null_path = "/dev/null";
} }
elsif ( -f "..\\out32dll\\openssl.exe" ) { elsif ( -f "..\\out32dll\\openssl.exe" ) {
$ossl_path = "..\\out32dll\\openssl.exe"; $ossl_path = "..\\out32dll\\openssl.exe";
$null_path = "/dev/null";
} }
elsif ( -f "..\\out32\\openssl.exe" ) { elsif ( -f "..\\out32\\openssl.exe" ) {
$ossl_path = "..\\out32\\openssl.exe"; $ossl_path = "..\\out32\\openssl.exe";
$null_path = "/dev/null";
} }
else { else {
die "Can't find OpenSSL executable"; die "Can't find OpenSSL executable";
@ -87,12 +92,12 @@ my $no_ec2m;
my $no_ecdh; my $no_ecdh;
my $ossl8 = `$ossl_path version -v` =~ /0\.9\.8/; my $ossl8 = `$ossl_path version -v` =~ /0\.9\.8/;
system ("$ossl_path no-ec >/dev/null"); system ("$ossl_path no-ec > $null_path");
if ($? == 0) if ($? == 0)
{ {
$no_ec = 1; $no_ec = 1;
} }
elsif ($? == 256) elsif ($^O eq "VMS" ? $? == 512 : $? == 256)
{ {
$no_ec = 0; $no_ec = 0;
} }
@ -101,7 +106,7 @@ else
die "Error checking for EC support\n"; die "Error checking for EC support\n";
} }
system ("$ossl_path no-ec2m >/dev/null"); system ("$ossl_path no-ec2m > $null_path");
if ($? == 0) if ($? == 0)
{ {
$no_ec2m = 1; $no_ec2m = 1;
@ -115,7 +120,7 @@ else
die "Error checking for EC2M support\n"; die "Error checking for EC2M support\n";
} }
system ("$ossl_path no-ecdh >/dev/null"); system ("$ossl_path no-ecdh > $null_path");
if ($? == 0) if ($? == 0)
{ {
$no_ecdh = 1; $no_ecdh = 1;