[openssl-commits] [openssl] master update

Andy Polyakov appro at openssl.org
Mon Feb 2 14:29:31 UTC 2015


The branch master has been updated
       via  5da05a26f21e7c43a156b65b13a9bc968a6c78db (commit)
      from  1d4d68570b8d3f214da0df57c5a629ced9668161 (commit)


- Log -----------------------------------------------------------------
commit 5da05a26f21e7c43a156b65b13a9bc968a6c78db
Author: Andy Polyakov <appro at openssl.org>
Date:   Fri Jan 30 16:15:46 2015 +0100

    cms-test.pl: "localize" /dev/null even further [as follow-up to VMS].
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 test/cms-test.pl |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/cms-test.pl b/test/cms-test.pl
index 1c3f00d..51abeef 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 {


More information about the openssl-commits mailing list