Skip to content

Commit 0552c59

Browse files
committed
Unbreak SKIPIF
1 parent f3b71c8 commit 0552c59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/openssl/tests/stream_server_reneg_limit.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ openssl
55
--SKIPIF--
66
<?php
77
if (!function_exists("proc_open")) die("skip no proc_open");
8-
exec('openssl help', $out, $code);
8+
exec('openssl help 2> /dev/null', $out, $code);
99
if ($code > 0) die("skip couldn't locate openssl binary");
1010
if(substr(PHP_OS, 0, 3) == 'WIN') {
1111
die('skip not suitable for Windows');

ext/phar/tests/tar/bug70417.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ zlib
66
--SKIPIF--
77
<?php
88

9-
exec('lsof -p ' . getmypid(), $out, $status);
9+
exec('lsof -p ' . getmypid() . ' 2> /dev/null', $out, $status);
1010
if ($status !== 0) {
1111
die("skip lsof(8) not available");
1212
}

0 commit comments

Comments
 (0)