mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
restored that test part in ext/openssl to enable notify/wait
This commit is contained in:
parent
bcff8d1b26
commit
9ab73c52ab
1 changed files with 4 additions and 3 deletions
|
@ -72,10 +72,11 @@ class ServerClientTestCase
|
|||
public function runWorker()
|
||||
{
|
||||
$code = '';
|
||||
$i = 0;
|
||||
|
||||
while(($line = fgets(STDIN)) != false) {
|
||||
if ($i++ > 128) {
|
||||
while (1) {
|
||||
$line = fgets(STDIN);
|
||||
|
||||
if (trim($line) === "---") {
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue