Commit 6da48aed authored by Kobolog's avatar Kobolog

Fixed tests

parent 829d0003
...@@ -51,7 +51,7 @@ int main (int argc, char *argv []) ...@@ -51,7 +51,7 @@ int main (int argc, char *argv [])
assert (rc == 0); assert (rc == 0);
// Sending a message to an unknown peer with verbose behavior. // Sending a message to an unknown peer with verbose behavior.
rc = zmq_send (sa, "UNKNOWN", 7, ZMQ_SNDMORE); rc = zmq_send (sa, "UNKNOWN", 7, ZMQ_SNDMORE | ZMQ_DONTWAIT);
assert (rc == -1 && errno == EAGAIN); assert (rc == -1 && errno == EAGAIN);
rc = zmq_close (sa); rc = zmq_close (sa);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment