Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Improve stability of test gh13860.phpt
This commit is contained in:
Niels Dossche 2024-04-07 22:50:09 +02:00
commit 73218e063a
No known key found for this signature in database
GPG Key ID: B8A8AD166DF0E2E5

View File

@ -21,6 +21,7 @@ $serverCode = <<<'CODE'
fwrite($client, "xx");
phpt_wait();
fclose($client);
phpt_notify();
}
CODE;
@ -38,6 +39,7 @@ $clientCode = <<<'CODE'
while (!($in = fread($fp, 2))) {
usleep(1000);
}
phpt_wait();
var_dump(feof($fp));
fclose($fp);
CODE;