Re: Test 1900 isn't working due to a Linux-specific call

2013-04-18 Thread Linus Nielsen Feltzing
On 04/18/2013 08:23 AM, Dan Fandrich wrote: On Tue, Apr 16, 2013 at 09:30:04AM +0200, Linus Nielsen Feltzing wrote: Please try the attached patch. It uses poll() instead of epoll(). Note also that this file doesn't show up in the daily tarballs. It's probably missing from Makefile.am. Ah, th

Re: Test 1900 isn't working due to a Linux-specific call

2013-04-17 Thread Dan Fandrich
On Tue, Apr 16, 2013 at 09:30:04AM +0200, Linus Nielsen Feltzing wrote: > Please try the attached patch. It uses poll() instead of epoll(). Note also that this file doesn't show up in the daily tarballs. It's probably missing from Makefile.am. >>> Dan -

Re: Test 1900 isn't working due to a Linux-specific call

2013-04-16 Thread Nick Zitzmann
On Apr 16, 2013, at 1:30 AM, Linus Nielsen Feltzing wrote: >> So could whoever wrote this Python script please update it for those >> of us who are not using Linux-based operating systems? I'm running >> the tests on OS X Mountain Lion. > > Hi again! > > Please try the attached patch. It uses

Re: Test 1900 isn't working due to a Linux-specific call

2013-04-16 Thread Linus Nielsen Feltzing
On 04/16/2013 03:50 PM, Marc Hoersken wrote: since I am currently trying to make the test suite work on Windows, it would be great if we could avoid those Unix-only functions. Neither epoll nor poll are available on Windows-based Python installations. The recently introduced libuv example made me

Re: Test 1900 isn't working due to a Linux-specific call

2013-04-16 Thread Marc Hoersken
Hi there, 2013/4/16 Linus Nielsen Feltzing : > Please try the attached patch. It uses poll() instead of epoll(). since I am currently trying to make the test suite work on Windows, it would be great if we could avoid those Unix-only functions. Neither epoll nor poll are available on Windows-based

Re: Test 1900 isn't working due to a Linux-specific call

2013-04-16 Thread Linus Nielsen Feltzing
On 04/16/2013 02:08 AM, Nick Zitzmann wrote: So could whoever wrote this Python script please update it for those of us who are not using Linux-based operating systems? I'm running the tests on OS X Mountain Lion. Hi again! Please try the attached patch. It uses poll() instead of epoll(). Lin

Re: Test 1900 isn't working due to a Linux-specific call

2013-04-16 Thread Daniel Stenberg
On Tue, 16 Apr 2013, Linus Nielsen Feltzing wrote: I borrowed that code from Google. I'll see if I can come up with a solution, but I'm not a Python ninja. I suspect it isn't that easy to switch from epoll to a more generic version like libevent/libev. Mac OS X features kqueue[1] instead of e

Re: Test 1900 isn't working due to a Linux-specific call

2013-04-16 Thread Linus Nielsen Feltzing
On 04/16/2013 02:08 AM, Nick Zitzmann wrote: For a while now, I've been seeing this appear when running test 1900: === 'module' object has no attribute 'epoll' RUN: Unknown server on our http3 port: 9014 (52) RUN: HTTP3 server failed verification === I checked the documentation at

Test 1900 isn't working due to a Linux-specific call

2013-04-15 Thread Nick Zitzmann
For a while now, I've been seeing this appear when running test 1900: === 'module' object has no attribute 'epoll' RUN: Unknown server on our http3 port: 9014 (52) RUN: HTTP3 server failed verification === I checked the documentation at