restored that test part in ext/openssl to enable notify/wait

This commit is contained in:
Anatol Belski 2014-02-26 13:37:20 +01:00
parent bcff8d1b26
commit 9ab73c52ab

View file

@ -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;
}