Merge branch 'PHP-8.3'

* PHP-8.3:
  Fix test race condition
This commit is contained in:
Arnaud Le Blanc 2024-07-03 19:17:59 +02:00
commit e63e1afd84
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); $client = @stream_socket_accept($server);
if ($client) { if ($client) {
fwrite($client, "xx");
phpt_wait(); phpt_wait();
fwrite($client, "xx");
fclose($client); fclose($client);
phpt_notify(); phpt_notify();
} }