mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 18:55:10 +01:00
Test for issue #1690 (ZMQ_REQ_RELAXED)
Current ZMQ_REQ_RELAXED test improvement to check that pipes are not closed after executing two send() in a row with no recv() in between.
This commit is contained in:
parent
c30676fe52
commit
9bdb60577c
@ -110,6 +110,13 @@ int main (void)
|
||||
s_send_seq (rep [4], "GOOD", SEQ_END);
|
||||
s_recv_seq (req, "GOOD", SEQ_END);
|
||||
|
||||
// Case 3: Check issue #1690. Two send() in a row should not close the
|
||||
// communication pipes. For example pipe from req to rep[0] should not be
|
||||
// closed after executing Case 1. So rep[0] should be the next to receive,
|
||||
// not rep[1].
|
||||
s_send_seq(req, "J", SEQ_END);
|
||||
s_recv_seq(rep [0], "J", SEQ_END);
|
||||
|
||||
|
||||
close_zero_linger (req);
|
||||
for (size_t peer = 0; peer < services; peer++)
|
||||
|
Loading…
Reference in New Issue
Block a user