1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Skip OpenSSL proxy test for bug #74796 on Windows

This commit is contained in:
Jakub Zelenka
2025-06-05 16:18:06 +02:00
parent 42f6c15186
commit 444cc78a3e

View File

@@ -5,6 +5,9 @@ openssl
--SKIPIF--
<?php
if (!function_exists("proc_open")) die("skip no proc_open");
if (substr(PHP_OS, 0, 3) == 'WIN') {
die("skip not reliable on Windows due to proxy wait limitation");
}
?>
--FILE--
<?php