From: Andy Polyakov Date: Fri, 30 Jan 2015 15:15:46 +0000 (+0100) Subject: cms-test.pl: "localize" /dev/null even further [as follow-up to VMS]. X-Git-Tag: OpenSSL_1_0_2a~93 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=79e028575541e8fb37fe4d0889c985b2db0b6011;p=oweals%2Fopenssl.git cms-test.pl: "localize" /dev/null even further [as follow-up to VMS]. Reviewed-by: Rich Salz (cherry picked from commit 5da05a26f21e7c43a156b65b13a9bc968a6c78db) --- diff --git a/test/cms-test.pl b/test/cms-test.pl index 1c3f00dc5b..51abeef2c9 100644 --- a/test/cms-test.pl +++ b/test/cms-test.pl @@ -67,7 +67,7 @@ if ( $^O eq "VMS" && -f "OSSLX:openssl.exe" ) { # Make MSYS work elsif ( $^O eq "MSWin32" && -f "../apps/openssl.exe" ) { $ossl_path = "cmd /c ..\\apps\\openssl"; - $null_path = "/dev/null"; + $null_path = "NUL"; $failure_code = 256; } elsif ( -f "../apps/openssl$ENV{EXE_EXT}" ) { @@ -77,12 +77,12 @@ elsif ( -f "../apps/openssl$ENV{EXE_EXT}" ) { } elsif ( -f "..\\out32dll\\openssl.exe" ) { $ossl_path = "..\\out32dll\\openssl.exe"; - $null_path = "/dev/null"; + $null_path = "NUL"; $failure_code = 256; } elsif ( -f "..\\out32\\openssl.exe" ) { $ossl_path = "..\\out32\\openssl.exe"; - $null_path = "/dev/null"; + $null_path = "NUL"; $failure_code = 256; } else {