[skip ci] Adjust port for gh13860.phpt

Port 64325 is already used in ext/standard/tests/streams/gh11418.phpt. The test
randomly times out, and it's unclear whether it might be related to the
conflicting port.
This commit is contained in:
Ilija Tovilo 2024-05-13 12:10:40 +02:00
parent 5b6cda6523
commit 91c53e43c4
No known key found for this signature in database
GPG key ID: A4F5D403F118200A

View file

@ -9,7 +9,7 @@ if (!function_exists("proc_open")) die("skip no proc_open");
--FILE--
<?php
$serverCode = <<<'CODE'
$serverUri = "tcp://127.0.0.1:64325";
$serverUri = "tcp://128.0.0.1:64326";
$serverFlags = STREAM_SERVER_BIND | STREAM_SERVER_LISTEN;
$serverCtx = stream_context_create();
@ -26,7 +26,7 @@ $serverCode = <<<'CODE'
CODE;
$clientCode = <<<'CODE'
$serverUri = "tcp://127.0.0.1:64325";
$serverUri = "tcp://127.0.0.1:64326";
$clientFlags = STREAM_CLIENT_CONNECT;
phpt_wait();