Browse Source

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

pull/604/head
Anatol Belski 13 years ago
parent
commit
9ab73c52ab
  1. 7
      ext/openssl/tests/ServerClientTestCase.inc

7
ext/openssl/tests/ServerClientTestCase.inc

@ -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…
Cancel
Save