Fix test race condition

Closes GH-14790
This commit is contained in:
Arnaud Le Blanc 2024-07-03 16:12:57 +02:00
parent cd67080236
commit 070779c874
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();
}