summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-01-30 16:15:46 +0100
committerAndy Polyakov <appro@openssl.org>2015-02-02 15:29:10 +0100
commit79e028575541e8fb37fe4d0889c985b2db0b6011 (patch)
treede2e43c906061a19987038280b04b2a72a9ea3ec /test
parent8d5d455988d66048ec5b84756581bc3f6f2e55dd (diff)
cms-test.pl: "localize" /dev/null even further [as follow-up to VMS].
Reviewed-by: Rich Salz <rsalz@openssl.org> (cherry picked from commit 5da05a26f21e7c43a156b65b13a9bc968a6c78db)
Diffstat (limited to 'test')
-rw-r--r--test/cms-test.pl6
1 files changed, 3 insertions, 3 deletions
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 {