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

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

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();
}