RE: [PHP-DEV] Re: .phpt test question

2013-09-05 Thread Chris Wright
On Thu, Sep 5, 2013 at 5:38 AM, Daniel Lowrey wrote: > On further consideration this is probably better addressed by setting the > relevant socket streams to non-blocking so that a client connection can be > created in the same process space and tested utilizing select() and an > event loop. This

[PHP-DEV] Re: .phpt test question

2013-09-04 Thread Daniel Lowrey
On further consideration this is probably better addressed by setting the relevant socket streams to non-blocking so that a client connection can be created in the same process space and tested utilizing select() and an event loop. This would obviate the need for a proc_open() altogether. Thanks f