1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: make test-pipe-server-close pass on linux

When a server and a client are both part of the same event loop, and
the client connects to the server, the order in which the connect
callback and the connection callback are called is unspecified.
Apparently on linux the connection callback sometimes happens first,
which is not a bug, and should not make this test fail.
This commit is contained in:
Bert Belder 2013-12-21 11:32:22 +01:00
parent c66340d59b
commit 16c4b21e4d

View File

@ -53,7 +53,10 @@ static void pipe_client_connect_cb(uv_connect_t* req, int status) {
static void pipe_server_connection_cb(uv_stream_t* handle, int status) {
ASSERT(0 && "pipe_server_connection_cb should never be called");
/* This function *may* be called, depending on whether accept or the
* connection callback is called first.
*/
ASSERT(status == 0);
}