27999e83 | 21-Jul-2011 |
Ben Noordhuis |
test: update BAD_PIPENAME for Unices, check for UV_EACCESS |
186abb00 | 21-Jul-2011 |
Igor Zinkovsky |
windows: return UV_EACCESS for invalid pipe name |
7fbe0c38 | 21-Jul-2011 |
Ben Noordhuis |
test: `run-tests helper_name` runs helper in same process Fixes #116. |
fb42f82d | 21-Jul-2011 |
Ben Noordhuis |
uv-unix: uv_pipe_bind: raise UV_EINVAL if pipe already bound Fixes failing test pipe_bind_error_inval. |
580a5b46 | 21-Jul-2011 |
Ben Noordhuis |
uv-unix: uv_pipe_listen: raise UV_ENOTCONN if pipe not bound Fixes failing test pipe_listen_without_bind. |
afd22904 | 21-Jul-2011 |
Ben Noordhuis |
ev: mark inline functions in ev.h with __attribute__((unused)) Silences the ton of warnings you get with `gcc -Wall -Wextra`. |
1028a9c6 | 21-Jul-2011 |
Ben Noordhuis |
uv-unix: handle EINTR properly Fixes #113. |
5b532d5f | 21-Jul-2011 |
Bert Belder |
Windows: do not hang if LOOP->refs become 0 in a prepare callback |
1ab28df4 | 21-Jul-2011 |
Bert Belder |
Test that loop refs going down to zero in a prepare callback does not hang the event loop |
9d8c9cce | 21-Jul-2011 |
Bert Belder |
Move loop reference tests to their own file |
6e505766 | 21-Jul-2011 |
Bert Belder |
Windows: follow libev loop semantics more closely |
f8bdddcd | 20-Jul-2011 |
Igor Zinkovsky |
Allow pipe name to be in utf8 for uv_pipe_bind and uv_pipe_connect |
ee5236cf | 20-Jul-2011 |
Igor Zinkovsky |
Windows: make uv_pipe_bind fail for the pipe name already in-use |
c4611a41 | 21-Jul-2011 |
Ben Noordhuis |
uv-unix: move stream->fd >= 0 asserts out of connection error path on_connect callback must be invoked even if the connect() syscall fails. stream->fd == -1 in that case. |
5f12c30f | 21-Jul-2011 |
Bert Belder |
Correct idle_starvation test |
d9612fe0 | 21-Jul-2011 |
Bert Belder |
More changes related to uv_close returning void |
b931c931 | 21-Jul-2011 |
Ryan Dahl |
uv_close returns void |
f0c20aa9 | 21-Jul-2011 |
Bert Belder |
Test: active idle watcher should not block other events |
afc99875 | 21-Jul-2011 |
Igor Zinkovsky |
Add uv_pipe_bind tests |
27655094 | 19-Jul-2011 |
Igor Zinkovsky |
Windows: Use PeekNamedPipe instead of non-blocking reads to peek at the pipe buffer |
66f936bf | 21-Jul-2011 |
Ben Noordhuis |
uv-unix: call uv__accept() instead of accept() uv__accept() puts the socket in non-blocking close-on-exec mode, accept() by itself does not. Solves the case of the mysteriously
uv-unix: call uv__accept() instead of accept() uv__accept() puts the socket in non-blocking close-on-exec mode, accept() by itself does not. Solves the case of the mysteriously hanging HTTP benchmarks.
show more ...
|
332bbecd | 20-Jul-2011 |
Ben Noordhuis |
uv-unix: defer uv_pipe_connect callback to next tick |
685c083c | 20-Jul-2011 |
Ryan Dahl |
Only sleep on 'make bench' not on 'make test' |
b13a446d | 20-Jul-2011 |
Ryan Dahl |
Test for sync tcp and pipe connections |
eb5e00fd | 20-Jul-2011 |
Ben Noordhuis |
runner: give helpers a chance to clean up after the test. Fixes #50. |