Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Fix test race condition
This commit is contained in:
Arnaud Le Blanc 2024-07-03 19:17:43 +02:00
commit 6b54d3b26f
No known key found for this signature in database
GPG Key ID: 0098C05DD15ABC13

View File

@ -18,8 +18,8 @@ $serverCode = <<<'CODE'
$client = @stream_socket_accept($server);
if ($client) {
fwrite($client, "xx");
phpt_wait();
fwrite($client, "xx");
fclose($client);
phpt_notify();
}